1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2011 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
17    xmlns:android="http://schemas.android.com/apk/res/android"
18    package="com.android.frameworks.coretests.install_complete_package_info">
19
20<!--
21     This manifest declares at least one of each of the components that
22     can be retrieved by PackageManager.getInstalledPackages.
23     All the implementing classes are empty implementations
24-->
25
26    <uses-feature
27        android:name="com.android.frameworks.coretests.nonexistent" />
28    <uses-configuration
29        android:reqFiveWayNav="false" />
30
31    <instrumentation
32        android:name="android.test.InstrumentationTestRunner"
33        android:targetPackage="com.android.frameworks.coretests"
34        android:label="Frameworks Core Tests" />
35
36    <permission
37        android:label="test permission"
38        android:name="test_permission"
39        android:protectionLevel="normal" />
40
41    <application
42        android:hasCode="true">
43        <meta-data android:name="key1" android:value="value1" />
44        <meta-data android:name="key2" android:value="this_is_app" />
45
46        <activity
47            android:name="com.android.frameworks.coretests.TestActivity">
48            <meta-data android:name="key1" android:value="value1" />
49            <meta-data android:name="key2" android:value="this_is_activity" />
50        </activity>
51        <provider
52            android:name="com.android.frameworks.coretests.TestProvider"
53            android:authorities="com.android.frameworks.coretests.testprovider" >
54            <meta-data android:name="key1" android:value="value1" />
55            <meta-data android:name="key2" android:value="this_is_provider" />
56        </provider>
57
58        <receiver
59            android:name="com.android.frameworks.coretests.TestReceiver" >
60            <meta-data android:name="key1" android:value="value1" />
61            <meta-data android:name="key2" android:value="this_is_receiver" />
62        </receiver>
63
64        <service
65            android:name="com.android.frameworks.coretests.TestService" >
66            <meta-data android:name="key1" android:value="value1" />
67            <meta-data android:name="key2" android:value="this_is_service" />
68        </service>
69    </application>
70</manifest>
71