xref: /aosp_15_r20/device/sample/overlays/location/frameworks/base/core/res/res/values/config.xml (revision c73d2a9548bdf9b8681aeb4f83c479fa5d880dd4)
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3/**
4 * Copyright (c) 2012, The Android Open Source Project
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 *      http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18-->
19<resources>
20
21  <!-- Enable overlay for all location components. -->
22    <bool name="config_enableNetworkLocationOverlay" translatable="false">true</bool>
23    <bool name="config_enableFusedLocationOverlay" translatable="false">true</bool>
24    <bool name="config_enableGeocoderOverlay" translatable="false">true</bool>
25    <bool name="config_enableGeofenceOverlay" translatable="false">true</bool>
26
27    <!--
28       Sets the package names whose certificates should be used to
29       verify location providers are allowed to be loaded.
30    -->
31    <string-array name="config_locationProviderPackageNames" translatable="false">
32        <item>com.google.android.gms</item>
33        <item>com.android.location.fused</item>
34    </string-array>
35
36    <!-- Sets the package name for location extra packages -->
37    <string-array name="config_locationExtraPackageNames" translatable="false">
38         <item>com.google.android.gms.location.history</item>
39    </string-array>
40</resources>
41