Home | History | Annotate | Download | only in ApplicationsProvider
      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     <uses-permission android:name="android.permission.PACKAGE_USAGE_STATS" />
      6 
      7     <application android:process="android.process.acore" android:label="@string/app_label">
      8 
      9         <provider android:name="ApplicationsProvider" android:authorities="applications"
     10                 android:exported="true"
     11                 android:syncable="false" android:multiprocess="false" />
     12 
     13         <activity android:name="ApplicationLauncher"
     14                 android:label="@string/search_label"
     15                 android:icon="@android:drawable/sym_def_app_icon"
     16                 android:stateNotNeeded="true"
     17                 android:excludeFromRecents="true">
     18 
     19             <intent-filter>
     20                 <action android:name="android.intent.action.SEARCH" />
     21                 <category android:name="android.intent.category.DEFAULT" />
     22             </intent-filter>
     23 
     24             <meta-data android:name="android.app.searchable"
     25                     android:resource="@xml/searchable" />
     26         </activity>
     27 
     28     </application>
     29 </manifest>
     30