blob: 2ee942223b90665212cb4d520088ec37ac5170d0 [file] [log] [blame]
Suprabh Shukla9c723242016-03-22 17:17:14 -07001<?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 Shukla07a824b2017-03-31 16:04:14 -070018 package="com.android.cts.emptydeviceadmin" >
Suprabh Shukla9c723242016-03-22 17:17:14 -070019
Suprabh Shukla27e38a62017-09-01 14:39:01 -070020 <uses-sdk android:minSdkVersion="12"/>
Suprabh Shukla9c723242016-03-22 17:17:14 -070021
Suprabh Shukla07a824b2017-03-31 16:04:14 -070022 <application android:label="Test Device Admin">
Suprabh Shukla9c723242016-03-22 17:17:14 -070023 <receiver
Suprabh Shukla07a824b2017-03-31 16:04:14 -070024 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 Shukla9c723242016-03-22 17:17:14 -070029 <intent-filter>
30 <action android:name="android.app.action.DEVICE_ADMIN_ENABLED" />
31 </intent-filter>
32 </receiver>
Suprabh Shukla07a824b2017-03-31 16:04:14 -070033
Suprabh Shukla9c723242016-03-22 17:17:14 -070034 </application>
35</manifest>