blob: aa7f94730fb7f1496090401389638001a497d8f0 [file] [log] [blame]
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08001<?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
Michael Chan834e5992009-11-05 18:25:55 -08007
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08008 http://www.apache.org/licenses/LICENSE-2.0
Michael Chan834e5992009-11-05 18:25:55 -08009
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080010 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
Michael Chan834e5992009-11-05 18:25:55 -080020 <uses-permission android:name="android.permission.BLUETOOTH" />
Michael Chan76098b72010-03-02 15:04:27 -080021 <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
Xia Wang340bda72014-03-28 17:20:53 -070022 <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" />
Michael Chan834e5992009-11-05 18:25:55 -080025
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080026 <application>
27 <uses-library android:name="android.test.runner" />
Michael Chan834e5992009-11-05 18:25:55 -080028 <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>
Anders Hammar1b2dd9032010-04-08 10:03:50 +020036 <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>
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080052 </application>
53
Anders Hammar1b2dd9032010-04-08 10:03:50 +020054 <instrumentation android:name="android.test.InstrumentationTestRunner"
55 android:targetPackage="com.android.settings"
56 android:label="Settings App Tests">
57 </instrumentation>
58
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080059 <instrumentation android:name="SettingsLaunchPerformance"
60 android:targetPackage="com.android.settings"
61 android:label="Settings Launch Performance">
62 </instrumentation>
63
Jake Hamby59091c02010-09-16 16:55:43 -070064 <instrumentation android:name="android.test.InstrumentationTestRunner"
65 android:targetPackage="com.android.settings"
66 android:label="Settings Test Cases">
67 </instrumentation>
68
Michael Chan834e5992009-11-05 18:25:55 -080069</manifest>