diff options
author | Bruno Martins <bgcngm@gmail.com> | 2016-06-25 00:50:33 +0100 |
---|---|---|
committer | davidevinavil <davidevinavil@gmail.com> | 2017-01-21 18:25:45 +0100 |
commit | ec9758c57d4a2b0f615a1729f29e4f952eaf5131 (patch) | |
tree | 25ddffc7a091dc00c9aa4f5a0a30ed04bc7e6d1d /overlay | |
parent | e76dc93406d171805f0483073e54b64e0ef6f5e5 (diff) |
z2_plus: Enable QC location services
* This is a dependency for DPM on the new blobs
Change-Id: I000ac5722ea7087a6ab1f88ad205542382e3527c
Diffstat (limited to 'overlay')
-rw-r--r-- | overlay/frameworks/base/core/res/res/values/config.xml | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/overlay/frameworks/base/core/res/res/values/config.xml b/overlay/frameworks/base/core/res/res/values/config.xml index 5f1af24..1b312be 100644 --- a/overlay/frameworks/base/core/res/res/values/config.xml +++ b/overlay/frameworks/base/core/res/res/values/config.xml @@ -481,11 +481,17 @@ NOTE: This requires additional hardware-specific code. --> <!--bool name="config_ui_blur_enabled">true</bool--> - <!-- Default list of files pinned by the Pinner Service --> <string-array translatable="false" name="config_defaultPinnerServiceFiles"> <item>"/system/framework/arm64/boot-framework.oat"</item> <item>"/system/framework/oat/arm64/services.odex"</item> <item>"/system/framework/arm64/boot.oat"</item> <item>"/system/framework/arm64/boot-core-libart.oat"</item> </string-array> -</resources> + + <!-- Enable overlay for all location components. --> + <bool name="config_enableNetworkLocationOverlay" translatable="false">false</bool> + <bool name="config_enableFusedLocationOverlay" translatable="false">false</bool> + <string name="config_networkLocationProviderPackageName" translatable="false">com.qualcomm.location</string> + <string name="config_fusedLocationProviderPackageName" translatable="false">com.qualcomm.location</string> + <string name="config_comboNetworkLocationProvider" translatable="false">com.qualcomm.location</string> +/resources> |