The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 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 |
Michael Chan | 834e599 | 2009-11-05 18:25:55 -0800 | [diff] [blame] | 7 | |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 8 | http://www.apache.org/licenses/LICENSE-2.0 |
Michael Chan | 834e599 | 2009-11-05 18:25:55 -0800 | [diff] [blame] | 9 | |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 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 | |
Michael Chan | 834e599 | 2009-11-05 18:25:55 -0800 | [diff] [blame] | 20 | <uses-permission android:name="android.permission.BLUETOOTH" /> |
Michael Chan | 76098b7 | 2010-03-02 15:04:27 -0800 | [diff] [blame] | 21 | <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" /> |
Xia Wang | 340bda7 | 2014-03-28 17:20:53 -0700 | [diff] [blame] | 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" /> |
Michael Chan | 834e599 | 2009-11-05 18:25:55 -0800 | [diff] [blame] | 25 | |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 26 | <application> |
| 27 | <uses-library android:name="android.test.runner" /> |
Michael Chan | 834e599 | 2009-11-05 18:25:55 -0800 | [diff] [blame] | 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> |
Anders Hammar1 | b2dd903 | 2010-04-08 10:03:50 +0200 | [diff] [blame] | 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> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 52 | </application> |
| 53 | |
Anders Hammar1 | b2dd903 | 2010-04-08 10:03:50 +0200 | [diff] [blame] | 54 | <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 Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 59 | <instrumentation android:name="SettingsLaunchPerformance" |
| 60 | android:targetPackage="com.android.settings" |
| 61 | android:label="Settings Launch Performance"> |
| 62 | </instrumentation> |
| 63 | |
Jake Hamby | 59091c0 | 2010-09-16 16:55:43 -0700 | [diff] [blame] | 64 | <instrumentation android:name="android.test.InstrumentationTestRunner" |
| 65 | android:targetPackage="com.android.settings" |
| 66 | android:label="Settings Test Cases"> |
| 67 | </instrumentation> |
| 68 | |
Michael Chan | 834e599 | 2009-11-05 18:25:55 -0800 | [diff] [blame] | 69 | </manifest> |