blob: 5389c8047b26c8396631a6fa6c0eb20d9556429f [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" />
Brett Chabotcaf30a12011-07-28 19:33:22 -070026
27 <application>
28 <uses-library android:name="android.test.runner" />
29 <activity android:name="com.android.systemui.screenshot.ScreenshotStubActivity" />
Jason Monkd5a204f2015-12-21 08:50:01 -050030
31 <service
32 android:name="com.android.systemui.qs.external.TileLifecycleManagerTests$FakeTileService"
33 android:process=":killable" />
Brett Chabotcaf30a12011-07-28 19:33:22 -070034 </application>
35
36 <instrumentation android:name="android.test.InstrumentationTestRunner"
Jason Monk29f7a7b2014-11-17 14:40:56 -050037 android:targetPackage="com.android.systemui.tests"
Brett Chabotcaf30a12011-07-28 19:33:22 -070038 android:label="Tests for SystemUI">
39 </instrumentation>
40</manifest>