blob: 6464c127f9d598dd739087e44f2da1925dff5869 [file] [log] [blame]
Svetoslav683914b2015-01-15 14:22:26 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2015 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 package="com.android.providers.setting.test">
19
20 <uses-sdk android:minSdkVersion="21" android:targetSdkVersion="21" />
21
22 <uses-permission android:name="android.permission.WRITE_SETTINGS"/>
Ted Bauer14b74312023-03-31 18:34:03 +000023 <uses-permission android:name="android.permission.WRITE_ALLOWLISTED_DEVICE_CONFIG"/>
24 <uses-permission android:name="android.permission.READ_WRITE_SYNC_DISABLED_MODE_CONFIG"/>
Stanislav Zholnin596437f2018-12-28 15:34:23 +000025 <uses-permission android:name="android.permission.READ_DEVICE_CONFIG"/>
Svetoslav683914b2015-01-15 14:22:26 -080026 <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS"/>
27 <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL"/>
28 <uses-permission android:name="android.permission.MANAGE_USERS"/>
29
30 <application>
31 <uses-library android:name="android.test.runner" />
32 </application>
33
34 <instrumentation
KOUSHIK PANUGANTI1cd0f432018-12-18 14:36:38 -080035 android:name="androidx.test.runner.AndroidJUnitRunner"
Svetoslav683914b2015-01-15 14:22:26 -080036 android:targetPackage="com.android.providers.setting.test"
37 android:label="Settings Provider Tests" />
Svetoslav Ganove080da92016-12-21 17:10:35 -080038
Svetoslav683914b2015-01-15 14:22:26 -080039</manifest>