2018-09-05 13:45:40 -07:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!-- Copyright (C) 2018 The Android Open Source Project
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="com.android.frameworks.mockingservicestests">
|
|
|
|
|
2020-01-15 19:09:52 +00:00
|
|
|
<uses-permission android:name="android.permission.LOG_COMPAT_CHANGE"/>
|
|
|
|
<uses-permission android:name="android.permission.READ_COMPAT_CHANGE_CONFIG"/>
|
2019-04-12 16:38:02 -07:00
|
|
|
<uses-permission android:name="android.permission.CHANGE_CONFIGURATION" />
|
|
|
|
<uses-permission android:name="android.permission.HARDWARE_TEST"/>
|
2018-08-22 18:15:04 -07:00
|
|
|
<uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" />
|
2019-05-07 16:29:59 -07:00
|
|
|
<uses-permission android:name="android.permission.MANAGE_APPOPS"/>
|
2019-12-18 16:03:47 +00:00
|
|
|
<uses-permission android:name="android.permission.MONITOR_DEVICE_CONFIG_ACCESS"/>
|
2018-08-22 18:15:04 -07:00
|
|
|
|
|
|
|
<application android:testOnly="true"
|
|
|
|
android:debuggable="true">
|
2018-09-05 13:45:40 -07:00
|
|
|
<uses-library android:name="android.test.runner" />
|
|
|
|
</application>
|
|
|
|
|
|
|
|
<instrumentation
|
|
|
|
android:name="androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
android:targetPackage="com.android.frameworks.mockingservicestests"
|
|
|
|
android:label="Frameworks Mocking Services Tests" />
|
|
|
|
</manifest>
|