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