Sudheer Shanka | 53c23fd | 2016-08-17 19:34:58 -0700 | [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" |
John Reck | 7a9a4ec | 2016-08-25 15:24:03 -0700 | [diff] [blame] | 18 | package="com.android.perftests.multiuser"> |
Sudheer Shanka | 53c23fd | 2016-08-17 19:34:58 -0700 | [diff] [blame] | 19 | |
Bookatz | 312da05 | 2019-04-11 09:24:54 -0700 | [diff] [blame] | 20 | <uses-permission android:name="android.permission.CONTROL_KEYGUARD" /> |
Sudheer Shanka | 53c23fd | 2016-08-17 19:34:58 -0700 | [diff] [blame] | 21 | <uses-permission android:name="android.permission.MANAGE_USERS" /> |
Bookatz | 312da05 | 2019-04-11 09:24:54 -0700 | [diff] [blame] | 22 | <uses-permission android:name="android.permission.INSTALL_PACKAGES" /> |
Sudheer Shanka | 53c23fd | 2016-08-17 19:34:58 -0700 | [diff] [blame] | 23 | <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS" /> |
| 24 | <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" /> |
Bookatz | 04d7ae5 | 2019-08-05 14:07:12 -0700 | [diff] [blame] | 25 | <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" /> |
Sudheer Shanka | 53c23fd | 2016-08-17 19:34:58 -0700 | [diff] [blame] | 26 | |
| 27 | <application> |
| 28 | <uses-library android:name="android.test.runner" /> |
| 29 | </application> |
| 30 | |
KOUSHIK PANUGANTI | 130f0a5 | 2018-12-17 14:41:06 -0800 | [diff] [blame] | 31 | <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner" |
John Reck | 7a9a4ec | 2016-08-25 15:24:03 -0700 | [diff] [blame] | 32 | android:targetPackage="com.android.perftests.multiuser"/> |
Sudheer Shanka | 53c23fd | 2016-08-17 19:34:58 -0700 | [diff] [blame] | 33 | |
John Reck | 7a9a4ec | 2016-08-25 15:24:03 -0700 | [diff] [blame] | 34 | </manifest> |