Svetoslav | 683914b | 2015-01-15 14:22:26 -0800 | [diff] [blame] | 1 | <?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 Bauer | 14b7431 | 2023-03-31 18:34:03 +0000 | [diff] [blame] | 23 | <uses-permission android:name="android.permission.WRITE_ALLOWLISTED_DEVICE_CONFIG"/> |
| 24 | <uses-permission android:name="android.permission.READ_WRITE_SYNC_DISABLED_MODE_CONFIG"/> |
Stanislav Zholnin | 596437f | 2018-12-28 15:34:23 +0000 | [diff] [blame] | 25 | <uses-permission android:name="android.permission.READ_DEVICE_CONFIG"/> |
Svetoslav | 683914b | 2015-01-15 14:22:26 -0800 | [diff] [blame] | 26 | <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 PANUGANTI | 1cd0f43 | 2018-12-18 14:36:38 -0800 | [diff] [blame] | 35 | android:name="androidx.test.runner.AndroidJUnitRunner" |
Svetoslav | 683914b | 2015-01-15 14:22:26 -0800 | [diff] [blame] | 36 | android:targetPackage="com.android.providers.setting.test" |
| 37 | android:label="Settings Provider Tests" /> |
Svetoslav Ganov | e080da9 | 2016-12-21 17:10:35 -0800 | [diff] [blame] | 38 | |
Svetoslav | 683914b | 2015-01-15 14:22:26 -0800 | [diff] [blame] | 39 | </manifest> |