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.delegate"> 19 20 <uses-permission android:name="android.permission.INTERNET"/> 21 22 <!-- TODO(b/176993670): remove if DpmWrapper goes away --> 23 <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS"/> 24 25 <application android:usesCleartextTraffic="true"> 26 <uses-library android:name="android.test.runner"/> 27 <receiver android:name=".DelegateTestUtils$DelegatedLogsReceiver" 28 android:permission="android.permission.BIND_DEVICE_ADMIN" 29 android:exported="true"> 30 <intent-filter> 31 <action android:name="android.app.action.NETWORK_LOGS_AVAILABLE"/> 32 <action android:name="android.app.action.SECURITY_LOGS_AVAILABLE"/> 33 </intent-filter> 34 </receiver> 35 <!-- TODO(b/176993670): remove if DpmWrapper goes away --> 36 <receiver android:name="com.android.bedstead.dpmwrapper.IpcBroadcastReceiver" 37 android:exported="true"> 38 <!-- TODO(b/213348113, b/213331396) - might need to explicitly set the filter below: 39 <intent-filter> 40 <action android:name="com.android.bedstead.dpmwrapper.action.WRAPPED_MANAGER_CALL"/> 41 </intent-filter> 42 --> 43 </receiver> 44 <!-- TODO(b/176993670): remove if DpmWrapper goes away --> 45 <receiver android:name="com.android.bedstead.dpmwrapper.TestAppCallbacksReceiver" 46 android:exported="true"/> 47 </application> 48 <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner" 49 android:targetPackage="com.android.cts.delegate" 50 android:label="Delegation CTS Tests"/> 51</manifest> 52