summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorFabrice Di Meglio <fdimeglio@google.com>2014-04-09 18:28:08 -0700
committerFabrice Di Meglio <fdimeglio@google.com>2014-04-09 18:31:36 -0700
commiteda3757c9a738533f9ee01d0d2a16eb3847d46b0 (patch)
treeb9f531fd84b72e416c574784e5414c670beeb3d9 /AndroidManifest.xml
parent26b6d17ef22ee1490d141696c14f834849a2703c (diff)
downloadandroid_packages_apps_CellBroadcastReceiver-eda3757c9a738533f9ee01d0d2a16eb3847d46b0.tar.gz
android_packages_apps_CellBroadcastReceiver-eda3757c9a738533f9ee01d0d2a16eb3847d46b0.tar.bz2
android_packages_apps_CellBroadcastReceiver-eda3757c9a738533f9ee01d0d2a16eb3847d46b0.zip
Add "Cell broadcasts" settings indexing for Search in Settings
- make the apk a privileged one (required for Settings Search) - add CellBroadcastSearchIndexableProvider which is a SearchIndexablesProvider for providing the search data to index Related to bug #13929390 Change-Id: Ia25f613a01623339fa78ddf10eb4f1c471fd833e
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml12
1 files changed, 12 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 1d3ff356..4771fd77 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -128,5 +128,17 @@
</intent-filter>
</receiver>
+ <provider
+ android:name="CellBroadcastSearchIndexableProvider"
+ android:authorities="com.android.cellbroadcastreceiver"
+ android:multiprocess="false"
+ android:grantUriPermissions="true"
+ android:permission="android.permission.READ_SEARCH_INDEXABLES"
+ android:exported="true">
+ <intent-filter>
+ <action android:name="android.content.action.SEARCH_INDEXABLES_PROVIDER" />
+ </intent-filter>
+ </provider>
+
</application>
</manifest>