blob: 6e17cf404854ceca6e5b9463200f11a5973cce7a [file] [log] [blame]
Brett Chabotcaf30a12011-07-28 19:33:22 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2011 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.systemui.tests">
19
20 <uses-permission android:name="android.permission.INJECT_EVENTS" />
Jason Monkc014dec2014-12-12 11:49:55 -050021 <uses-permission android:name="android.permission.READ_PHONE_STATE" />
Jason Monkd5a204f2015-12-21 08:50:01 -050022 <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS" />
Jason Monkf6a3cf92016-02-29 13:01:08 -050023 <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" />
24 <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" />
Jason Monkd5a204f2015-12-21 08:50:01 -050025 <uses-permission android:name="android.permission.MANAGE_USERS" />
Jason Monk0c6e0992016-03-29 15:49:02 -040026 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
27 <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
Jason Monk88529052016-11-04 13:29:58 -040028 <uses-permission android:name="android.permission.BIND_QUICK_SETTINGS_TILE" />
Brett Chabotcaf30a12011-07-28 19:33:22 -070029
30 <application>
31 <uses-library android:name="android.test.runner" />
32 <activity android:name="com.android.systemui.screenshot.ScreenshotStubActivity" />
Jason Monkd5a204f2015-12-21 08:50:01 -050033
34 <service
35 android:name="com.android.systemui.qs.external.TileLifecycleManagerTests$FakeTileService"
36 android:process=":killable" />
Brett Chabotcaf30a12011-07-28 19:33:22 -070037 </application>
38
Geoffrey Pitsch2c403db2016-08-26 09:09:39 -040039 <instrumentation android:name="android.support.test.runner.AndroidJUnitRunner"
Jason Monk29f7a7b2014-11-17 14:40:56 -050040 android:targetPackage="com.android.systemui.tests"
Brett Chabotcaf30a12011-07-28 19:33:22 -070041 android:label="Tests for SystemUI">
42 </instrumentation>
43</manifest>