blob: 7ecf941b87bd003af67649be18b6c1d53eebbe32 [file] [log] [blame]
Ed Heylf24bae22009-04-29 17:03:36 -07001<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:theme="@android:style/Theme.NoDisplay"
14 android:excludeFromRecents="true">
15
16 <intent-filter>
17 <action android:name="android.intent.action.SEARCH" />
18 <category android:name="android.intent.category.DEFAULT" />
19 </intent-filter>
20
21 <meta-data android:name="android.app.searchable"
22 android:resource="@xml/searchable" />
23
24 </activity>
25 </application>
26</manifest>