1*fc9e02ccSAndroid Build Coastguard Worker<?xml version="1.0" encoding="utf-8"?> 2*fc9e02ccSAndroid Build Coastguard Worker<!-- 3*fc9e02ccSAndroid Build Coastguard Worker ~ Copyright (C) 2023 The Android Open Source Project 4*fc9e02ccSAndroid Build Coastguard Worker ~ 5*fc9e02ccSAndroid Build Coastguard Worker ~ Licensed under the Apache License, Version 2.0 (the "License"); 6*fc9e02ccSAndroid Build Coastguard Worker ~ you may not use this file except in compliance with the License. 7*fc9e02ccSAndroid Build Coastguard Worker ~ You may obtain a copy of the License at 8*fc9e02ccSAndroid Build Coastguard Worker ~ 9*fc9e02ccSAndroid Build Coastguard Worker ~ http://www.apache.org/licenses/LICENSE-2.0 10*fc9e02ccSAndroid Build Coastguard Worker ~ 11*fc9e02ccSAndroid Build Coastguard Worker ~ Unless required by applicable law or agreed to in writing, software 12*fc9e02ccSAndroid Build Coastguard Worker ~ distributed under the License is distributed on an "AS IS" BASIS, 13*fc9e02ccSAndroid Build Coastguard Worker ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14*fc9e02ccSAndroid Build Coastguard Worker ~ See the License for the specific language governing permissions and 15*fc9e02ccSAndroid Build Coastguard Worker ~ limitations under the License. 16*fc9e02ccSAndroid Build Coastguard Worker --> 17*fc9e02ccSAndroid Build Coastguard Worker 18*fc9e02ccSAndroid Build Coastguard Worker<manifest xmlns:android="http://schemas.android.com/apk/res/android" 19*fc9e02ccSAndroid Build Coastguard Worker package="android.bluetooth.cts_root"> 20*fc9e02ccSAndroid Build Coastguard Worker 21*fc9e02ccSAndroid Build Coastguard Worker <uses-permission android:name="android.permission.BLUETOOTH" /> 22*fc9e02ccSAndroid Build Coastguard Worker <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" /> 23*fc9e02ccSAndroid Build Coastguard Worker <uses-permission android:name="android.permission.BLUETOOTH_ADVERTISE"/> 24*fc9e02ccSAndroid Build Coastguard Worker <uses-permission android:name="android.permission.BLUETOOTH_SCAN"/> 25*fc9e02ccSAndroid Build Coastguard Worker <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> 26*fc9e02ccSAndroid Build Coastguard Worker <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> 27*fc9e02ccSAndroid Build Coastguard Worker <uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" /> 28*fc9e02ccSAndroid Build Coastguard Worker <uses-permission android:name="android.permission.DISABLE_KEYGUARD" /> 29*fc9e02ccSAndroid Build Coastguard Worker <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" /> 30*fc9e02ccSAndroid Build Coastguard Worker <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS" /> 31*fc9e02ccSAndroid Build Coastguard Worker 32*fc9e02ccSAndroid Build Coastguard Worker <!-- This is a self-instrumenting test package. --> 33*fc9e02ccSAndroid Build Coastguard Worker <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner" 34*fc9e02ccSAndroid Build Coastguard Worker android:targetPackage="android.bluetooth.cts_root" 35*fc9e02ccSAndroid Build Coastguard Worker android:label="CTS root tests of Bluetooth component"/> 36*fc9e02ccSAndroid Build Coastguard Worker 37*fc9e02ccSAndroid Build Coastguard Worker</manifest> 38*fc9e02ccSAndroid Build Coastguard Worker 39