Suprabh Shukla | 9c72324 | 2016-03-22 17:17:14 -0700 | [diff] [blame] | 1 | <?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" |
Suprabh Shukla | 07a824b | 2017-03-31 16:04:14 -0700 | [diff] [blame] | 18 | package="com.android.cts.emptydeviceadmin" > |
Suprabh Shukla | 9c72324 | 2016-03-22 17:17:14 -0700 | [diff] [blame] | 19 | |
Suprabh Shukla | 27e38a6 | 2017-09-01 14:39:01 -0700 | [diff] [blame] | 20 | <uses-sdk android:minSdkVersion="12"/> |
Suprabh Shukla | 9c72324 | 2016-03-22 17:17:14 -0700 | [diff] [blame] | 21 | |
Suprabh Shukla | 07a824b | 2017-03-31 16:04:14 -0700 | [diff] [blame] | 22 | <application android:label="Test Device Admin"> |
Suprabh Shukla | 9c72324 | 2016-03-22 17:17:14 -0700 | [diff] [blame] | 23 | <receiver |
Suprabh Shukla | 07a824b | 2017-03-31 16:04:14 -0700 | [diff] [blame] | 24 | android:name=".EmptyDeviceAdmin" |
| 25 | android:permission="android.permission.BIND_DEVICE_ADMIN"> |
| 26 | <meta-data |
| 27 | android:name="android.app.device_admin" |
| 28 | android:resource="@xml/device_admin"/> |
Suprabh Shukla | 9c72324 | 2016-03-22 17:17:14 -0700 | [diff] [blame] | 29 | <intent-filter> |
| 30 | <action android:name="android.app.action.DEVICE_ADMIN_ENABLED" /> |
| 31 | </intent-filter> |
| 32 | </receiver> |
Suprabh Shukla | 07a824b | 2017-03-31 16:04:14 -0700 | [diff] [blame] | 33 | |
Suprabh Shukla | 9c72324 | 2016-03-22 17:17:14 -0700 | [diff] [blame] | 34 | </application> |
| 35 | </manifest> |