AndroidManifest.xml revision f2f1b6c94685147a6260cc70909247a96bcbe81f
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        <activity
44            android:name="com.android.frameworks.coretests.TestActivity">
45        </activity>
46        <provider
47            android:name="com.android.frameworks.coretests.TestProvider"
48            android:authorities="com.android.frameworks.coretests.testprovider" />
49        <receiver
50            android:name="com.android.frameworks.coretests.TestReceiver" />
51        <service
52            android:name="com.android.frameworks.coretests.TestService" />
53    </application>
54</manifest>
55