arangelov | aec663b | 2017-11-29 16:44:00 +0000 | [diff] [blame] | 1 | <?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 |
arangelov | 14ebdc8 | 2017-12-13 12:31:50 +0000 | [diff] [blame] | 29 | android:name="com.android.cts.transferowner.DeviceAndProfileOwnerTransferIncomingTest$BasicAdminReceiver" |
arangelov | aec663b | 2017-11-29 16:44:00 +0000 | [diff] [blame] | 30 | android:permission="android.permission.BIND_DEVICE_ADMIN"> |
| 31 | <meta-data android:name="android.app.device_admin" |
| 32 | android:resource="@xml/device_admin"/> |
arangelov | 2a8031b | 2018-01-11 20:50:14 +0000 | [diff] [blame] | 33 | <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" |
arangelov | d348307 | 2018-02-23 17:43:22 +0000 | [diff] [blame] | 41 | android:resource="@xml/device_admin_no_support_transfer_policy"/> |
arangelov | aec663b | 2017-11-29 16:44:00 +0000 | [diff] [blame] | 42 | <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> |