blob: 767857bf2de8b6b663ed76bae10fdc8ce3f82ac3 [file] [log] [blame]
Geoffrey Pitschb879cc62016-11-01 13:38:22 -04001<?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 Monkec4b6772017-12-06 10:31:09 -050018 package="com.android.frameworks.tests.uiservices">
Geoffrey Pitschb879cc62016-11-01 13:38:22 -040019
20 <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS" />
Geoffrey Pitsch03533712017-01-05 10:30:07 -050021 <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" />
22 <uses-permission android:name="android.permission.UPDATE_APP_OPS_STATS" />
Geoffrey Pitschb879cc62016-11-01 13:38:22 -040023 <uses-permission android:name="android.permission.MANAGE_USERS" />
Geoffrey Pitsch03533712017-01-05 10:30:07 -050024 <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" />
Geoffrey Pitsch331a64d2017-01-17 14:00:47 -050025 <uses-permission android:name="android.permission.ACCESS_NOTIFICATIONS" />
Julia Reynolds73ed76b2017-04-04 17:04:38 -040026 <uses-permission android:name="android.permission.STATUS_BAR_SERVICE" />
Jason Monke8f8be72018-01-21 10:10:35 -050027 <uses-permission android:name="android.permission.ACCESS_VOICE_INTERACTION_SERVICE" />
Amith Yamasani396a10c2018-01-19 10:58:07 -080028 <uses-permission android:name="android.permission.DEVICE_POWER" />
Jason Monk7f8f19c2018-03-16 17:07:02 -040029 <uses-permission android:name="android.permission.ACCESS_CONTENT_PROVIDERS_EXTERNALLY" />
Andrei Onea26559bc2020-01-15 19:09:52 +000030 <uses-permission android:name="android.permission.LOG_COMPAT_CHANGE"/>
31 <uses-permission android:name="android.permission.READ_COMPAT_CHANGE_CONFIG"/>
Jeff Sharkey6a97cc32018-04-17 12:16:20 -060032 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Julia Reynolds0c245002019-03-27 16:10:11 -040033 <uses-permission android:name="android.permission.OBSERVE_ROLE_HOLDERS" />
Mady Mellorca0c24c2019-05-16 16:14:32 -070034 <uses-permission android:name="android.permission.GET_INTENT_SENDER_INTENT"/>
Julia Reynoldsb6c83742019-07-30 18:03:40 -040035 <uses-permission android:name="android.permission.WRITE_DEVICE_CONFIG" />
Geoffrey Pitschb879cc62016-11-01 13:38:22 -040036
Jason Monk1fc931a2017-12-14 13:22:58 -050037 <application android:debuggable="true">
Geoffrey Pitschb879cc62016-11-01 13:38:22 -040038 <uses-library android:name="android.test.runner" />
Jason Monk74f5e362017-12-06 08:56:33 -050039
40 <provider android:name=".DummyProvider"
41 android:authorities="com.android.services.uitests" />
Mady Mellorca0c24c2019-05-16 16:14:32 -070042
Geoffrey Pitschb879cc62016-11-01 13:38:22 -040043 </application>
44
45 <instrumentation
Jason Monkc429f692017-06-27 13:13:49 -040046 android:name="android.testing.TestableInstrumentation"
Jason Monkec4b6772017-12-06 10:31:09 -050047 android:targetPackage="com.android.frameworks.tests.uiservices"
Geoffrey Pitschb879cc62016-11-01 13:38:22 -040048 android:label="Notification Tests" />
49</manifest>