blob: 1072754be2b435d4ce4cb304a84f6e3a7eca6e07 [file] [log] [blame]
Ashita Sriraman48813e02018-01-17 10:27:29 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2018 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"
Jeff Sharkey2af67a92018-04-01 18:25:54 -060018 package="com.android.settings.ui"
19 android:sharedUserId="android.uid.systemui">
Ashita Sriraman48813e02018-01-17 10:27:29 -080020
21 <application>
22 <uses-library android:name="android.test.runner" />
23 </application>
24
25 <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
26 <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" />
27 <uses-permission android:name="android.permission.BLUETOOTH" />
28 <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
Jeff Sharkey9e07eab2021-03-22 15:33:01 -060029 <uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />
30 <uses-permission android:name="android.permission.BLUETOOTH_SCAN" />
Ashita Sriraman48813e02018-01-17 10:27:29 -080031 <uses-permission android:name="android.permission.READ_LOGS" />
Jeff Sharkey2af67a92018-04-01 18:25:54 -060032 <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" />
Matthew Fritze11fa37e2018-07-17 13:47:39 -070033 <uses-permission android:name="android.permission.READ_SEARCH_INDEXABLES"/>
Ashita Sriraman48813e02018-01-17 10:27:29 -080034
35 <instrumentation
Brett Chabot031dcf52018-12-13 19:06:32 -080036 android:name="androidx.test.runner.AndroidJUnitRunner"
Ashita Sriraman48813e02018-01-17 10:27:29 -080037 android:targetPackage="com.android.settings.ui"
38 android:label="Android Settings Functional UI Tests" />
39</manifest>