summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEd Heyl <nobody@android.com>2009-04-29 17:03:36 -0700
committerThe Android Open Source Project <initial-contribution@android.com>2009-04-29 17:03:36 -0700
commitf24bae2be7de6c341aa8752a2da68b204bdd37f6 (patch)
tree11620e1995f3caf36f32b34292f6d817c142977e
parent7bdff8d17939c56f436c710e902e8a62b202cfeb (diff)
downloadApplicationsProvider-f24bae2be7de6c341aa8752a2da68b204bdd37f6.tar.gz
AI 147998: whitespace change for force Git import
Automated import of CL 147998
-rw-r--r--AndroidManifest.xml26
1 files changed, 26 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
new file mode 100644
index 0000000..7ecf941
--- /dev/null
+++ b/AndroidManifest.xml
@@ -0,0 +1,26 @@
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.android.providers.applications"
+ android:sharedUserId="android.uid.shared">
+
+ <application android:process="android.process.acore">
+
+ <provider android:name="ApplicationsProvider" android:authorities="applications"
+ android:syncable="false" android:multiprocess="false" />
+
+ <activity android:name="ApplicationLauncher"
+ android:label="@string/search_label"
+ android:stateNotNeeded="true"
+ android:theme="@android:style/Theme.NoDisplay"
+ android:excludeFromRecents="true">
+
+ <intent-filter>
+ <action android:name="android.intent.action.SEARCH" />
+ <category android:name="android.intent.category.DEFAULT" />
+ </intent-filter>
+
+ <meta-data android:name="android.app.searchable"
+ android:resource="@xml/searchable" />
+
+ </activity>
+ </application>
+</manifest>