summaryrefslogtreecommitdiffstats
path: root/tests/AndroidTests/EnabledTestApp/AndroidManifest.xml
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2009-03-03 18:28:45 -0800
committerThe Android Open Source Project <initial-contribution@android.com>2009-03-03 18:28:45 -0800
commitd83a98f4ce9cfa908f5c54bbd70f03eec07e7553 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /tests/AndroidTests/EnabledTestApp/AndroidManifest.xml
parent076357b8567458d4b6dfdcf839ef751634cd2bfb (diff)
downloadframeworks_base-d83a98f4ce9cfa908f5c54bbd70f03eec07e7553.zip
frameworks_base-d83a98f4ce9cfa908f5c54bbd70f03eec07e7553.tar.gz
frameworks_base-d83a98f4ce9cfa908f5c54bbd70f03eec07e7553.tar.bz2
auto import from //depot/cupcake/@135843
Diffstat (limited to 'tests/AndroidTests/EnabledTestApp/AndroidManifest.xml')
-rw-r--r--tests/AndroidTests/EnabledTestApp/AndroidManifest.xml37
1 files changed, 0 insertions, 37 deletions
diff --git a/tests/AndroidTests/EnabledTestApp/AndroidManifest.xml b/tests/AndroidTests/EnabledTestApp/AndroidManifest.xml
deleted file mode 100644
index ad610f1..0000000
--- a/tests/AndroidTests/EnabledTestApp/AndroidManifest.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.android.unit_tests.enabled_app"
- android:sharedUserId="com.android.uid.test">
-
- <application>
-
- <!-- Used to test package component enabling and disabling -->
- <activity android:name=".DisabledActivity" android:enabled="false" >
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="com.android.unit_tests.enabled_app.TEST_CATEGORY" />
- </intent-filter>
- </activity>
- <service android:name=".DisabledService" android:enabled="false" >
- </service>
- <receiver android:name=".DisabledReceiver" android:enabled="false" >
- <intent-filter>
- <action android:name="android.intent.action.ENABLED_APP_DISABLED_RECEIVER" />
- </intent-filter>
- </receiver>
- <provider android:name=".DisabledProvider" android:enabled="false"
- android:authorities="com.android.unit_tests.enabled_app.DisabledProvider"
- android:process=":disabled.provider.process" />
- <activity android:name=".EnabledActivity" >
- </activity>
- <service android:name=".EnabledService" android:enabled="true" >
- </service>
- <receiver android:name=".EnabledReceiver" >
- <intent-filter>
- <action android:name="android.intent.action.ENABLED_APP_ENABLED_RECEIVER" />
- </intent-filter>
- </receiver>
- <provider android:name=".EnabledProvider"
- android:authorities="com.android.unit_tests.enabled_app.EnabledProvider"
- android:process=":enabled.provider.process" />
- </application>
-</manifest>