replicant-vendor_cmsdk/cm/res/res/values/config.xml

41 lines
2.0 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2015 The CyanogenMod Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<resources>
<!-- Whether to enable app suggest overlay which allows app suggest
provider to be replaced by an app at run-time. When disabled, only
the config_appSuggestProviderPackageName will be searched for app
suggest provider, otherwise packages whos signature matches the
signature of config_appSuggestProviderPackageNames will be searched,
and the service with the highest version number will be picked.
Anyone who wants to disable the overlay mechanism can set it to false.
Note: There appears to be an issue with false if we reinstall the provider which causes
it to not get the update and fail to reconnect on package update. It's safer to just
use the list version with config_appSuggestProviderPackageNames.
-->
<bool name="config_enableAppSuggestOverlay" translatable="false">true</bool>
<!-- Package name providing app suggest support. Used only when
config_enableAppSuggestOverlay is false. -->
<string name="config_appSuggestProviderPackageName" translatable="false">com.cyanogen.app.suggest</string>
<!-- List of packages providing app suggest support. Used only when
config_enableAppSuggestOverlay is true. -->
<string-array name="config_appSuggestProviderPackageNames" translatable="false">
<item>com.cyanogen.app.suggest</item>
</string-array>
</resources>