1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 ~ Copyright (C) 2023 The Android Open Source Project 4 ~ 5 ~ Licensed under the Apache License, Version 2.0 (the "License"); 6 ~ you may not use this file except in compliance with the License. 7 ~ You may obtain a copy of the License at 8 ~ 9 ~ http://www.apache.org/licenses/LICENSE-2.0 10 ~ 11 ~ Unless required by applicable law or agreed to in writing, software 12 ~ distributed under the License is distributed on an "AS IS" BASIS, 13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 ~ See the License for the specific language governing permissions and 15 ~ limitations under the License. 16 --> 17 18<!--The purpose of this manifest is to export all components from DeviceLockController in order to 19 interact with them through adb shell. 20 Components in this manifest that are marked as exported=true and 21 tools:replace="android:exported" will be exported regardless of how it is set in 22 AndroidManifestBase.xml. 23 Note that this manifest is only included in debug build. 24--> 25<manifest xmlns:android="http://schemas.android.com/apk/res/android" 26 xmlns:tools="http://schemas.android.com/tools" 27 package="com.android.devicelockcontroller"> 28 29 <application android:name=".DeviceLockControllerApplication"> 30 <!-- Receiver used for debugging purpose. 31 This component is only included in debug build --> 32 <receiver android:name="com.android.devicelockcontroller.debug.SetupParametersOverrider" 33 android:exported="true" /> 34 35 <receiver android:name="com.android.devicelockcontroller.debug.SetupFlowStarter" 36 android:exported="true" /> 37 38 <receiver android:name="com.android.devicelockcontroller.debug.DeviceLockCommandReceiver" 39 android:exported="true" /> 40 41 <activity 42 android:name="com.android.devicelockcontroller.activities.HelpActivity" 43 android:exported="true" 44 tools:replace="android:exported" /> 45 <activity 46 android:name="com.android.devicelockcontroller.activities.LandingActivity" 47 android:exported="true" 48 tools:replace="android:exported" /> 49 50 <activity 51 android:name="com.android.devicelockcontroller.activities.ProvisioningActivity" 52 android:exported="true" 53 tools:replace="android:exported" /> 54 55 <activity 56 android:name="com.android.devicelockcontroller.activities.DeviceEnrollmentActivity" 57 android:exported="true" 58 tools:replace="android:exported" /> 59 60 <activity-alias 61 android:name="com.android.devicelockcontroller.activities.DeviceFinancingSecondaryUserLandingActivity" 62 android:exported="true" 63 tools:replace="android:exported" /> 64 <activity-alias 65 android:name="com.android.devicelockcontroller.activities.DeviceFinancingDeferredProvisioningLandingActivity" 66 android:exported="true" 67 tools:replace="android:exported" /> 68 <activity-alias 69 android:name="com.android.devicelockcontroller.activities.DeviceSubsidyProvisioningLandingActivity" 70 android:exported="true" 71 tools:replace="android:exported" /> 72 73 <activity-alias 74 android:name="com.android.devicelockcontroller.activities.DeviceSubsidyDeferredProvisioningLandingActivity" 75 android:exported="true" 76 tools:replace="android:exported" /> 77 78 <activity-alias 79 android:name="com.android.devicelockcontroller.activities.DeviceSubsidyEnrollmentActivity" 80 android:exported="true" 81 tools:replace="android:exported" /> 82 83 <activity-alias 84 android:name="com.android.devicelockcontroller.activities.DeviceFinancingProvisionNotRequiredLandingActivity" 85 android:exported="true" 86 tools:replace="android:exported"/> 87 88 <activity-alias 89 android:name="com.android.devicelockcontroller.activities.DeviceSubsidyProvisionNotRequiredLandingActivity" 90 android:exported="true" 91 tools:replace="android:exported"/> 92 93 <receiver 94 android:name="com.android.devicelockcontroller.receivers.CheckInBootCompletedReceiver" 95 android:exported="true" 96 tools:replace="android:exported" /> 97 98 <receiver 99 android:name="com.android.devicelockcontroller.receivers.LockTaskBootCompletedReceiver" 100 android:exported="true" 101 tools:replace="android:exported" /> 102 103 <receiver 104 android:name="com.android.devicelockcontroller.receivers.LockedBootCompletedReceiver" 105 android:exported="true" 106 tools:replace="android:exported" /> 107 108 <service 109 android:name="com.android.devicelockcontroller.DeviceLockControllerService" 110 android:exported="true" 111 tools:replace="android:exported" /> 112 113 <service 114 android:name="com.android.devicelockcontroller.storage.SetupParametersService" 115 android:exported="true" 116 tools:replace="android:exported" /> 117 118 <service 119 android:name="com.android.devicelockcontroller.storage.GlobalParametersService" 120 android:exported="true" 121 tools:replace="android:exported" /> 122 123 </application> 124 125</manifest> 126