Jiun-Yang Hsu | 7a3635e | 2020-12-31 14:18:01 +0800 | [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 | xmlns:androidprv="http://schemas.android.com/apk/prv/res/android" |
Syaoran Kuo | f4aca12 | 2021-04-08 16:08:32 +0800 | [diff] [blame] | 19 | package="com.android.settings.tests.component" |
| 20 | android:sharedUserId="android.uid.systemui"> |
Jiun-Yang Hsu | 7a3635e | 2020-12-31 14:18:01 +0800 | [diff] [blame] | 21 | |
| 22 | <uses-permission android:name="android.permission.BLUETOOTH" /> |
| 23 | <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" /> |
Jeff Sharkey | 9e07eab | 2021-03-22 15:33:01 -0600 | [diff] [blame] | 24 | <uses-permission android:name="android.permission.BLUETOOTH_CONNECT" /> |
| 25 | <uses-permission android:name="android.permission.BLUETOOTH_SCAN" /> |
Jiun-Yang Hsu | 7a3635e | 2020-12-31 14:18:01 +0800 | [diff] [blame] | 26 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
| 27 | <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> |
| 28 | <uses-permission android:name="android.permission.USE_CREDENTIALS" /> |
| 29 | <uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" /> |
| 30 | <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" /> |
| 31 | <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS" /> |
| 32 | <uses-permission android:name="android.permission.UPDATE_APP_OPS_STATS" /> |
| 33 | <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" /> |
| 34 | <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> |
| 35 | |
| 36 | <application/> |
| 37 | |
| 38 | <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner" |
| 39 | android:targetPackage="com.android.settings" |
| 40 | android:label="Settings Test Cases"> |
| 41 | </instrumentation> |
| 42 | |
Jeff Sharkey | 9e07eab | 2021-03-22 15:33:01 -0600 | [diff] [blame] | 43 | </manifest> |