blob: 74cb8550a4d4b010dd0ab0c51bfb5bb38769fe9f [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (C) 2021 The Android Open Source Project
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.bedstead.testapp.RoleHolderTestApp">
<application android:appComponentFactory="com.android.bedstead.testapp.TestAppAppComponentFactory">
<!-- Activity that filters the trusted source provisioning intent action -->
<activity android:name=".RoleHolderTrustedSourceActivity"
android:exported="true"
android:permission="android.permission.LAUNCH_DEVICE_MANAGER_SETUP">
<intent-filter>
<action android:name="android.app.action.ROLE_HOLDER_PROVISION_MANAGED_DEVICE_FROM_TRUSTED_SOURCE"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
<!-- Activity that filters the managed profile provisioning intent action -->
<activity android:name=".RoleHolderManagedProfileActivity"
android:exported="true"
android:permission="android.permission.LAUNCH_DEVICE_MANAGER_SETUP">
<intent-filter>
<action android:name="android.app.action.ROLE_HOLDER_PROVISION_MANAGED_PROFILE"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
<!-- Activity that filters the provisioning finalization intent action -->
<activity android:name=".RoleHolderFinalizationActivity"
android:exported="true"
android:permission="android.permission.LAUNCH_DEVICE_MANAGER_SETUP">
<intent-filter>
<action android:name="android.app.action.ROLE_HOLDER_PROVISION_FINALIZATION"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
<!-- Receiver for when a managed profile becomes available/unavailable/removed -->
<receiver android:name=".ProfileStatusChangedReceiver"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MANAGED_PROFILE_UNAVAILABLE"/>
<action android:name="android.intent.action.MANAGED_PROFILE_AVAILABLE"/>
<action android:name="android.intent.action.MANAGED_PROFILE_REMOVED"/>
</intent-filter>
</receiver>
</application>
</manifest>