blob: b6ebb209e05a6a8aa8f88b75bada86eb9b8cc2ac [file] [log] [blame]
Tony Makf0fd1a62016-03-04 16:33:21 +00001<?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"
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070018 package="com.android.cts.deviceandprofileowner">
Tony Makf0fd1a62016-03-04 16:33:21 +000019
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070020 <uses-sdk android:minSdkVersion="23"
21 android:targetSdkVersion="23"/>
Tony Makf0fd1a62016-03-04 16:33:21 +000022 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070023 <uses-permission android:name="android.permission.AUTHENTICATE_ACCOUNTS"/>
24 <uses-permission android:name="android.permission.DISABLE_KEYGUARD"/>
25 <uses-permission android:name="android.permission.INTERNET"/>
26 <uses-permission android:name="android.permission.MANAGE_ACCOUNTS"/>
27 <uses-permission android:name="android.permission.CAMERA"/>
Tony Makf0fd1a62016-03-04 16:33:21 +000028
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070029 <application android:testOnly="true">
Kenny Guye91f1a62016-04-19 13:33:59 +010030
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070031 <uses-library android:name="android.test.runner"/>
32 <receiver android:name="com.android.cts.deviceandprofileowner.BaseDeviceAdminTest$BasicAdminReceiver"
33 android:permission="android.permission.BIND_DEVICE_ADMIN"
34 android:exported="true">
Tony Makf0fd1a62016-03-04 16:33:21 +000035 <meta-data android:name="android.app.device_admin"
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070036 android:resource="@xml/device_admin"/>
Tony Makf0fd1a62016-03-04 16:33:21 +000037 <intent-filter>
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070038 <action android:name="android.app.action.DEVICE_ADMIN_ENABLED"/>
Tony Makf0fd1a62016-03-04 16:33:21 +000039 </intent-filter>
40 </receiver>
41 </application>
42
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070043 <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
44 android:label="Profile and Device Owner CTS Tests API 23"
45 android:targetPackage="com.android.cts.deviceandprofileowner">
46 <meta-data android:name="listener"
47 android:value="com.android.cts.runner.CtsTestRunListener"/>
Tony Make7f50352017-01-04 12:13:41 +000048 </instrumentation>
Tony Makf0fd1a62016-03-04 16:33:21 +000049</manifest>