summaryrefslogtreecommitdiffstats
path: root/quickstep/AndroidManifest.xml
diff options
context:
space:
mode:
authorSunny Goyal <sunnygoyal@google.com>2017-11-02 18:55:44 -0700
committerSunny Goyal <sunnygoyal@google.com>2018-03-09 12:57:11 -0800
commit3fbca15555309d3d4e6b27b8107bb69bf6489351 (patch)
tree86c28d5e406badeae4ccba38557f2ef263a9fd42 /quickstep/AndroidManifest.xml
parent016d7e93c1d87fb55330948c997b0cb7a368f66d (diff)
downloadandroid_packages_apps_Trebuchet-3fbca15555309d3d4e6b27b8107bb69bf6489351.tar.gz
android_packages_apps_Trebuchet-3fbca15555309d3d4e6b27b8107bb69bf6489351.tar.bz2
android_packages_apps_Trebuchet-3fbca15555309d3d4e6b27b8107bb69bf6489351.zip
Adding support for prefenrece search in QuickStep
Bug: 62292864 Change-Id: Ic112626ca9c5942c91ced4ab42e64cbce4657701
Diffstat (limited to 'quickstep/AndroidManifest.xml')
-rw-r--r--quickstep/AndroidManifest.xml13
1 files changed, 13 insertions, 0 deletions
diff --git a/quickstep/AndroidManifest.xml b/quickstep/AndroidManifest.xml
index d531a463b..4a26494b6 100644
--- a/quickstep/AndroidManifest.xml
+++ b/quickstep/AndroidManifest.xml
@@ -48,6 +48,19 @@
It is set to true so that the activity can be started from command line -->
<activity android:name="com.android.quickstep.RecentsActivity"
android:exported="true" />
+
+ <!-- Content provider to settings search -->
+ <provider
+ android:name="com.android.quickstep.LauncherSearchIndexablesProvider"
+ android:authorities="com.android.launcher3"
+ android:grantUriPermissions="true"
+ android:multiprocess="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>