Geoffrey Pitsch | b879cc6 | 2016-11-01 13:38:22 -0400 | [diff] [blame] | 1 | <?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" |
Jason Monk | ec4b677 | 2017-12-06 10:31:09 -0500 | [diff] [blame] | 18 | package="com.android.frameworks.tests.uiservices"> |
Geoffrey Pitsch | b879cc6 | 2016-11-01 13:38:22 -0400 | [diff] [blame] | 19 | |
| 20 | <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS" /> |
Geoffrey Pitsch | 0353371 | 2017-01-05 10:30:07 -0500 | [diff] [blame] | 21 | <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" /> |
| 22 | <uses-permission android:name="android.permission.UPDATE_APP_OPS_STATS" /> |
Matías Hernández | 7ca7ab7 | 2023-06-01 18:47:01 +0200 | [diff] [blame] | 23 | <uses-permission android:name="android.permission.UPDATE_DEVICE_STATS" /> |
Geoffrey Pitsch | b879cc6 | 2016-11-01 13:38:22 -0400 | [diff] [blame] | 24 | <uses-permission android:name="android.permission.MANAGE_USERS" /> |
Geoffrey Pitsch | 0353371 | 2017-01-05 10:30:07 -0500 | [diff] [blame] | 25 | <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" /> |
Geoffrey Pitsch | 331a64d | 2017-01-17 14:00:47 -0500 | [diff] [blame] | 26 | <uses-permission android:name="android.permission.ACCESS_NOTIFICATIONS" /> |
Julia Reynolds | 73ed76b | 2017-04-04 17:04:38 -0400 | [diff] [blame] | 27 | <uses-permission android:name="android.permission.STATUS_BAR_SERVICE" /> |
Jason Monk | e8f8be76 | 2018-01-21 10:10:35 -0500 | [diff] [blame] | 28 | <uses-permission android:name="android.permission.ACCESS_VOICE_INTERACTION_SERVICE" /> |
Amith Yamasani | 396a10c | 2018-01-19 10:58:07 -0800 | [diff] [blame] | 29 | <uses-permission android:name="android.permission.DEVICE_POWER" /> |
Jason Monk | 7f8f19c | 2018-03-16 17:07:02 -0400 | [diff] [blame] | 30 | <uses-permission android:name="android.permission.ACCESS_CONTENT_PROVIDERS_EXTERNALLY" /> |
Andrei Onea | 26559bc | 2020-01-15 19:09:52 +0000 | [diff] [blame] | 31 | <uses-permission android:name="android.permission.LOG_COMPAT_CHANGE"/> |
| 32 | <uses-permission android:name="android.permission.READ_COMPAT_CHANGE_CONFIG"/> |
Jeff Sharkey | 6a97cc3 | 2018-04-17 12:16:20 -0600 | [diff] [blame] | 33 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
Julia Reynolds | 0c24500 | 2019-03-27 16:10:11 -0400 | [diff] [blame] | 34 | <uses-permission android:name="android.permission.OBSERVE_ROLE_HOLDERS" /> |
Mady Mellor | ca0c24c | 2019-05-16 16:14:32 -0700 | [diff] [blame] | 35 | <uses-permission android:name="android.permission.GET_INTENT_SENDER_INTENT"/> |
Julia Reynolds | 81c57a9 | 2023-03-28 09:33:38 -0400 | [diff] [blame] | 36 | <uses-permission android:name="android.permission.READ_DEVICE_CONFIG" /> |
Ted Bauer | 14b7431 | 2023-03-31 18:34:03 +0000 | [diff] [blame] | 37 | <uses-permission android:name="android.permission.WRITE_ALLOWLISTED_DEVICE_CONFIG" /> |
| 38 | <uses-permission android:name="android.permission.READ_WRITE_SYNC_DISABLED_MODE_CONFIG" /> |
Wenhao Wang | 3cb6842 | 2022-02-02 10:56:44 -0800 | [diff] [blame] | 39 | <uses-permission android:name="android.permission.ACCESS_KEYGUARD_SECURE_STORAGE" /> |
Matías Hernández | 7ca7ab7 | 2023-06-01 18:47:01 +0200 | [diff] [blame] | 40 | <uses-permission android:name="android.permission.WAKE_LOCK" /> |
Geoffrey Pitsch | b879cc6 | 2016-11-01 13:38:22 -0400 | [diff] [blame] | 41 | |
Jason Monk | 1fc931a | 2017-12-14 13:22:58 -0500 | [diff] [blame] | 42 | <application android:debuggable="true"> |
Geoffrey Pitsch | b879cc6 | 2016-11-01 13:38:22 -0400 | [diff] [blame] | 43 | <uses-library android:name="android.test.runner" /> |
Jason Monk | 74f5e36 | 2017-12-06 08:56:33 -0500 | [diff] [blame] | 44 | |
| 45 | <provider android:name=".DummyProvider" |
| 46 | android:authorities="com.android.services.uitests" /> |
Mady Mellor | ca0c24c | 2019-05-16 16:14:32 -0700 | [diff] [blame] | 47 | |
Geoffrey Pitsch | b879cc6 | 2016-11-01 13:38:22 -0400 | [diff] [blame] | 48 | </application> |
| 49 | |
| 50 | <instrumentation |
Jason Monk | c429f69 | 2017-06-27 13:13:49 -0400 | [diff] [blame] | 51 | android:name="android.testing.TestableInstrumentation" |
Jason Monk | ec4b677 | 2017-12-06 10:31:09 -0500 | [diff] [blame] | 52 | android:targetPackage="com.android.frameworks.tests.uiservices" |
Geoffrey Pitsch | b879cc6 | 2016-11-01 13:38:22 -0400 | [diff] [blame] | 53 | android:label="Notification Tests" /> |
| 54 | </manifest> |