Adding support for prefenrece search in QuickStep

Bug: 62292864
Change-Id: Ic112626ca9c5942c91ced4ab42e64cbce4657701
This commit is contained in:
Sunny Goyal
2017-11-02 18:55:44 -07:00
parent 016d7e93c1
commit 3fbca15555
8 changed files with 380 additions and 1 deletions

View File

@@ -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>