blob: c35bef1c1864faf941101397c1dd024268b4a012 [file] [log] [blame]
Alejandro Fernández04665982017-05-12 15:35:39 +01001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2017 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.devicepolicy.singleadmin">
Alejandro Fernández04665982017-05-12 15:35:39 +010019
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070020 <application android:testOnly="true">
Alejandro Fernández04665982017-05-12 15:35:39 +010021
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070022 <uses-library android:name="android.test.runner"/>
Alejandro Fernández04665982017-05-12 15:35:39 +010023
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070024 <receiver android:name="com.android.cts.devicepolicy.singleadmin.ProvisioningSingleAdminTest$AdminReceiver"
25 android:permission="android.permission.BIND_DEVICE_ADMIN"
26 android:exported="true">
Alejandro Fernández04665982017-05-12 15:35:39 +010027 <meta-data android:name="android.app.device_admin"
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070028 android:resource="@xml/device_admin"/>
Alejandro Fernández04665982017-05-12 15:35:39 +010029 <intent-filter>
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070030 <action android:name="android.app.action.DEVICE_ADMIN_ENABLED"/>
Alejandro Fernández04665982017-05-12 15:35:39 +010031 </intent-filter>
32 </receiver>
33
34 <activity android:name="com.android.compatibility.common.util.devicepolicy.provisioning.StartProvisioningActivity"/>
35
36 </application>
37
Brett Chabot244f0382019-02-15 13:02:34 -080038 <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070039 android:targetPackage="com.android.cts.devicepolicy.singleadmin"
40 android:label="Managed Profile CTS Tests (Single admin receiver)"/>
Alejandro Fernández04665982017-05-12 15:35:39 +010041</manifest>