blob: 90101627d17a5b2c027b3b4f7c2d836b8f0d9007 [file] [log] [blame]
Jiun-Yang Hsu7a3635e2020-12-31 14:18:01 +08001<?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 Kuof4aca122021-04-08 16:08:32 +080019 package="com.android.settings.tests.component"
20 android:sharedUserId="android.uid.systemui">
Jiun-Yang Hsu7a3635e2020-12-31 14:18:01 +080021
22 <uses-permission android:name="android.permission.BLUETOOTH" />
23 <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
Jeff Sharkey9e07eab2021-03-22 15:33:01 -060024 <uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />
25 <uses-permission android:name="android.permission.BLUETOOTH_SCAN" />
Jiun-Yang Hsu7a3635e2020-12-31 14:18:01 +080026 <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 Sharkey9e07eab2021-03-22 15:33:01 -060043</manifest>