blob: b7212924e685a4aa33880eb9076ee0eb1d9a19f5 [file] [log] [blame]
arangelovaec663b2017-11-29 16:44:00 +00001<?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"
18 package="com.android.cts.transferownerincoming">
19
20 <uses-sdk android:minSdkVersion="24"/>
21
22 <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS"/>
23
24 <application
25 android:testOnly="true">
26
27 <uses-library android:name="android.test.runner"/>
28 <receiver
arangelov14ebdc82017-12-13 12:31:50 +000029 android:name="com.android.cts.transferowner.DeviceAndProfileOwnerTransferIncomingTest$BasicAdminReceiver"
arangelovaec663b2017-11-29 16:44:00 +000030 android:permission="android.permission.BIND_DEVICE_ADMIN">
31 <meta-data android:name="android.app.device_admin"
32 android:resource="@xml/device_admin"/>
arangelov2a8031b2018-01-11 20:50:14 +000033 <intent-filter>
34 <action android:name="android.app.action.DEVICE_ADMIN_ENABLED"/>
35 </intent-filter>
36 </receiver>
37 <receiver
38 android:name="com.android.cts.transferowner.DeviceAndProfileOwnerTransferIncomingTest$BasicAdminReceiverNoMetadata"
39 android:permission="android.permission.BIND_DEVICE_ADMIN">
40 <meta-data android:name="android.app.device_admin"
arangelovd3483072018-02-23 17:43:22 +000041 android:resource="@xml/device_admin_no_support_transfer_policy"/>
arangelovaec663b2017-11-29 16:44:00 +000042 <intent-filter>
43 <action android:name="android.app.action.DEVICE_ADMIN_ENABLED"/>
44 </intent-filter>
45 </receiver>
46 </application>
47
48 <instrumentation android:name="android.support.test.runner.AndroidJUnitRunner"
49 android:targetPackage="com.android.cts.transferownerincoming"
50 android:label="Transfer Owner CTS tests"/>
51</manifest>