Benjamin Franz | d11b713 | 2016-01-21 12:27:36 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2016 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.unit"> |
| 19 | |
Doris Ling | d47606a | 2017-08-28 16:05:39 -0700 | [diff] [blame] | 20 | <uses-permission android:name="android.permission.BLUETOOTH" /> |
| 21 | <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" /> |
Jeff Sharkey | 9e07eab | 2021-03-22 15:33:01 -0600 | [diff] [blame] | 22 | <uses-permission android:name="android.permission.BLUETOOTH_CONNECT" /> |
| 23 | <uses-permission android:name="android.permission.BLUETOOTH_SCAN" /> |
Doris Ling | d47606a | 2017-08-28 16:05:39 -0700 | [diff] [blame] | 24 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
| 25 | <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> |
| 26 | <uses-permission android:name="android.permission.USE_CREDENTIALS" /> |
| 27 | <uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" /> |
Peter Visontay | 11bfef6 | 2017-12-13 17:31:41 +0000 | [diff] [blame] | 28 | <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" /> |
Doris Ling | d47606a | 2017-08-28 16:05:39 -0700 | [diff] [blame] | 29 | <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS" /> |
| 30 | <uses-permission android:name="android.permission.UPDATE_APP_OPS_STATS" /> |
Phil Weaver | 203b923 | 2018-03-02 16:07:51 -0800 | [diff] [blame] | 31 | <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" /> |
Doris Ling | d47606a | 2017-08-28 16:05:39 -0700 | [diff] [blame] | 32 | |
Julia Reynolds | 20814ed | 2021-02-05 18:30:52 -0500 | [diff] [blame] | 33 | <application android:debuggable="true"> |
Benjamin Franz | d11b713 | 2016-01-21 12:27:36 +0000 | [diff] [blame] | 34 | <uses-library android:name="android.test.runner" /> |
Doris Ling | d47606a | 2017-08-28 16:05:39 -0700 | [diff] [blame] | 35 | <activity android:name="com.android.settings.tests.BluetoothRequestPermissionTest" |
Ashwini Oruganti | fd9721f | 2020-05-20 14:42:18 -0700 | [diff] [blame] | 36 | android:exported="true" |
Doris Ling | d47606a | 2017-08-28 16:05:39 -0700 | [diff] [blame] | 37 | android:label="Bluetooth Perm Test" > |
| 38 | <intent-filter> |
| 39 | <action android:name="android.intent.action.MAIN" /> |
| 40 | <category android:name="android.intent.category.DEFAULT" /> |
| 41 | <category android:name="android.intent.category.LAUNCHER" /> |
| 42 | </intent-filter> |
| 43 | </activity> |
Ashwini Oruganti | fd9721f | 2020-05-20 14:42:18 -0700 | [diff] [blame] | 44 | <activity android:name="Operator" android:label="Operator Hook Test" |
| 45 | android:exported="true"> |
Doris Ling | d47606a | 2017-08-28 16:05:39 -0700 | [diff] [blame] | 46 | <intent-filter> |
| 47 | <action android:name="com.android.settings.OPERATOR_APPLICATION_SETTING" /> |
| 48 | </intent-filter> |
| 49 | <meta-data android:name="com.android.settings.title" android:resource="@string/operator_settings_title" /> |
| 50 | <meta-data android:name="com.android.settings.summary" android:resource="@string/operator_settings_summary" /> |
| 51 | <meta-data android:name="com.android.settings.icon" android:resource="@drawable/ic_settings_applications" /> |
| 52 | </activity> |
Ashwini Oruganti | fd9721f | 2020-05-20 14:42:18 -0700 | [diff] [blame] | 53 | <activity android:name="Manufacturer" android:label="Manufacturer Hook Test" |
| 54 | android:exported="true"> |
Doris Ling | d47606a | 2017-08-28 16:05:39 -0700 | [diff] [blame] | 55 | <intent-filter> |
| 56 | <action android:name="com.android.settings.MANUFACTURER_APPLICATION_SETTING" /> |
| 57 | </intent-filter> |
| 58 | <meta-data android:name="com.android.settings.title" android:resource="@string/manufacturer_settings_title" /> |
| 59 | <meta-data android:name="com.android.settings.summary" android:resource="@string/manufacturer_settings_summary" /> |
| 60 | <meta-data android:name="com.android.settings.icon" android:resource="@drawable/ic_settings_applications" /> |
| 61 | </activity> |
Doris Ling | f2ecc4b | 2018-02-09 14:27:06 -0800 | [diff] [blame] | 62 | |
Ashwini Oruganti | fd9721f | 2020-05-20 14:42:18 -0700 | [diff] [blame] | 63 | <service android:name="com.android.settings.accounts.TestAuthService" |
| 64 | android:exported="true"> |
Doris Ling | f2ecc4b | 2018-02-09 14:27:06 -0800 | [diff] [blame] | 65 | <intent-filter> |
| 66 | <action android:name="android.accounts.AccountAuthenticator" /> |
| 67 | </intent-filter> |
| 68 | <meta-data android:name="android.accounts.AccountAuthenticator" |
| 69 | android:resource="@xml/authenticator" /> |
| 70 | </service> |
| 71 | |
Benjamin Franz | d11b713 | 2016-01-21 12:27:36 +0000 | [diff] [blame] | 72 | </application> |
| 73 | |
Brett Chabot | 031dcf5 | 2018-12-13 19:06:32 -0800 | [diff] [blame] | 74 | <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner" |
Benjamin Franz | d11b713 | 2016-01-21 12:27:36 +0000 | [diff] [blame] | 75 | android:targetPackage="com.android.settings" |
| 76 | android:label="Settings Test Cases"> |
| 77 | </instrumentation> |
| 78 | |
Benjamin Franz | d11b713 | 2016-01-21 12:27:36 +0000 | [diff] [blame] | 79 | </manifest> |