AndroidManifest.xml revision 0dc59e78e18493aecd37427531d093e800846c3e
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2008 The Android Open Source Project
3
4     Licensed under the Apache License, Version 2.0 (the "License");
5     you may not use this file except in compliance with the License.
6     You may obtain a copy of the License at
7  
8          http://www.apache.org/licenses/LICENSE-2.0
9  
10     Unless required by applicable law or agreed to in writing, software
11     distributed under the License is distributed on an "AS IS" BASIS,
12     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13     See the License for the specific language governing permissions and
14     limitations under the License.
15-->
16<manifest xmlns:android="http://schemas.android.com/apk/res/android"
17        package="com.android.frameworks.coretests.enabled_app"
18        android:sharedUserId="com.android.uid.test">
19
20    <application>
21
22        <!-- Used to test package component enabling and disabling -->
23        <activity android:name=".DisabledActivity" android:enabled="false" >
24            <intent-filter>
25                <action android:name="android.intent.action.MAIN" />
26                <category android:name="com.android.frameworks.coretests.enabled_app.TEST_CATEGORY" />
27            </intent-filter>
28        </activity>
29        <service android:name=".DisabledService" android:enabled="false" >
30        </service>
31        <receiver android:name=".DisabledReceiver" android:enabled="false" >
32            <intent-filter>
33                <action android:name="android.intent.action.ENABLED_APP_DISABLED_RECEIVER" />
34            </intent-filter>
35        </receiver>
36        <provider android:name=".DisabledProvider" android:enabled="false"
37                  android:authorities="com.android.frameworks.coretests.enabled_app.DisabledProvider"
38                  android:process=":disabled.provider.process" />
39        <activity android:name=".EnabledActivity" >
40        </activity>
41        <service android:name=".EnabledService" android:enabled="true" >
42        </service>
43        <receiver android:name=".EnabledReceiver" >
44            <intent-filter>
45                <action android:name="android.intent.action.ENABLED_APP_ENABLED_RECEIVER" />
46            </intent-filter>
47        </receiver>
48        <provider android:name=".EnabledProvider"
49                  android:authorities="com.android.frameworks.coretests.enabled_app.EnabledProvider"
50                  android:process=":enabled.provider.process" />
51    </application>
52</manifest>
53