blob: 4e4bfa2b256c8ed7b6725b445662541e9a9936bb [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
Peter Visontay7089c892011-02-11 18:36:18 +00005 <uses-permission android:name="android.permission.PACKAGE_USAGE_STATS" />
Peter Visontay62a6b1f2010-11-19 13:14:13 +00006
Dianne Hackbornbfe2f1f2010-07-24 18:22:23 -07007 <application android:process="android.process.acore" android:label="@string/app_label">
Ed Heylf24bae22009-04-29 17:03:36 -07008
9 <provider android:name="ApplicationsProvider" android:authorities="applications"
10 android:syncable="false" android:multiprocess="false" />
11
12 <activity android:name="ApplicationLauncher"
13 android:label="@string/search_label"
14 android:stateNotNeeded="true"
Ed Heylf24bae22009-04-29 17:03:36 -070015 android:excludeFromRecents="true">
16
17 <intent-filter>
18 <action android:name="android.intent.action.SEARCH" />
19 <category android:name="android.intent.category.DEFAULT" />
20 </intent-filter>
21
22 <meta-data android:name="android.app.searchable"
23 android:resource="@xml/searchable" />
Ed Heylf24bae22009-04-29 17:03:36 -070024 </activity>
Peter Visontay62a6b1f2010-11-19 13:14:13 +000025
Ed Heylf24bae22009-04-29 17:03:36 -070026 </application>
27</manifest>