OSDN Git Service

am ad36aa0e: (-s ours) am 3963b980: (-s ours) am 793b2a2d: (-s ours) am d4fd061d...
[android-x86/packages-apps-Settings.git] / tests / AndroidManifest.xml
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
17 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
18     package="com.android.settings.tests">
19
20     <uses-permission android:name="android.permission.BLUETOOTH" />
21     <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
22     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
23     <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
24     <uses-permission android:name="android.permission.USE_CREDENTIALS" />
25
26     <application>
27         <uses-library android:name="android.test.runner" />
28         <activity android:name="BluetoothRequestPermissionTest"
29             android:label="Bluetooth Perm Test" >
30             <intent-filter>
31                 <action android:name="android.intent.action.MAIN" />
32                 <category android:name="android.intent.category.DEFAULT" />
33                 <category android:name="android.intent.category.LAUNCHER" />
34             </intent-filter>
35         </activity>
36         <activity android:name="Operator" android:label="Operator Hook Test" >
37             <intent-filter>
38                 <action android:name="com.android.settings.OPERATOR_APPLICATION_SETTING" />
39             </intent-filter>
40             <meta-data android:name="com.android.settings.title" android:resource="@string/operator_settings_title" />
41             <meta-data android:name="com.android.settings.summary" android:resource="@string/operator_settings_summary" />
42             <meta-data android:name="com.android.settings.icon" android:resource="@drawable/ic_settings_applications" />
43         </activity>
44         <activity android:name="Manufacturer" android:label="Manufacturer Hook Test" >
45             <intent-filter>
46                 <action android:name="com.android.settings.MANUFACTURER_APPLICATION_SETTING" />
47             </intent-filter>
48             <meta-data android:name="com.android.settings.title" android:resource="@string/manufacturer_settings_title" />
49             <meta-data android:name="com.android.settings.summary" android:resource="@string/manufacturer_settings_summary" />
50             <meta-data android:name="com.android.settings.icon" android:resource="@drawable/ic_settings_applications" />
51         </activity>
52     </application>
53
54     <instrumentation android:name="android.test.InstrumentationTestRunner"
55         android:targetPackage="com.android.settings"
56         android:label="Settings App Tests">
57     </instrumentation>
58
59     <instrumentation android:name="SettingsLaunchPerformance"
60         android:targetPackage="com.android.settings"
61         android:label="Settings Launch Performance">
62     </instrumentation>
63
64     <instrumentation android:name="android.test.InstrumentationTestRunner"
65         android:targetPackage="com.android.settings"
66         android:label="Settings Test Cases">
67     </instrumentation>
68
69 </manifest>