blob: ad610f129a2a590c572b2d3dc22b8ce87ecac2b1 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2 package="com.android.unit_tests.enabled_app"
3 android:sharedUserId="com.android.uid.test">
4
5 <application>
6
7 <!-- Used to test package component enabling and disabling -->
8 <activity android:name=".DisabledActivity" android:enabled="false" >
9 <intent-filter>
10 <action android:name="android.intent.action.MAIN" />
11 <category android:name="com.android.unit_tests.enabled_app.TEST_CATEGORY" />
12 </intent-filter>
13 </activity>
14 <service android:name=".DisabledService" android:enabled="false" >
15 </service>
16 <receiver android:name=".DisabledReceiver" android:enabled="false" >
17 <intent-filter>
18 <action android:name="android.intent.action.ENABLED_APP_DISABLED_RECEIVER" />
19 </intent-filter>
20 </receiver>
21 <provider android:name=".DisabledProvider" android:enabled="false"
22 android:authorities="com.android.unit_tests.enabled_app.DisabledProvider"
23 android:process=":disabled.provider.process" />
24 <activity android:name=".EnabledActivity" >
25 </activity>
26 <service android:name=".EnabledService" android:enabled="true" >
27 </service>
28 <receiver android:name=".EnabledReceiver" >
29 <intent-filter>
30 <action android:name="android.intent.action.ENABLED_APP_ENABLED_RECEIVER" />
31 </intent-filter>
32 </receiver>
33 <provider android:name=".EnabledProvider"
34 android:authorities="com.android.unit_tests.enabled_app.EnabledProvider"
35 android:process=":enabled.provider.process" />
36 </application>
37</manifest>