1 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 2 package="com.android.providers.applications" 3 android:sharedUserId="android.uid.shared"> 4 5 <application android:process="android.process.acore"> 6 7 <provider android:name="ApplicationsProvider" android:authorities="applications" 8 android:syncable="false" android:multiprocess="false" /> 9 10 <activity android:name="ApplicationLauncher" 11 android:label="@string/search_label" 12 android:stateNotNeeded="true" 13 android:excludeFromRecents="true"> 14 15 <intent-filter> 16 <action android:name="android.intent.action.SEARCH" /> 17 <category android:name="android.intent.category.DEFAULT" /> 18 </intent-filter> 19 20 <meta-data android:name="android.app.searchable" 21 android:resource="@xml/searchable" /> 22 23 </activity> 24 </application> 25 </manifest> 26