| <?xml version="1.0" encoding="utf-8"?> |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| package="com.android.virtualdevicemanager"> |
| |
| <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES"/> |
| <uses-permission android:name="android.permission.MANAGE_APP_OPS_MODES" /> |
| <uses-permission android:name="android.permission.UPDATE_APP_OPS_STATS" /> |
| <uses-permission android:name="android.permission.MANAGE_COMPUTER_CONTROL_CONSENT" /> |
| |
| <application |
| android:allowBackup="false" |
| android:allowClearUserData="false" |
| android:label="@string/app_label" |
| android:forceQueryable="true" |
| android:supportsRtl="true"> |
| |
| <activity |
| android:name=".RequestComputerControlAccessActivity" |
| android:theme="@style/Theme.RequestComputerControlAccessActivity.FilterTouches" |
| android:excludeFromRecents="true" |
| android:exported="true" |
| android:launchMode="singleTop"> |
| <intent-filter android:priority="1"> |
| <action android:name="android.companion.virtual.computercontrol.action.REQUEST_ACCESS" /> |
| <category android:name="android.intent.category.DEFAULT" /> |
| </intent-filter> |
| </activity> |
| |
| <activity |
| android:name=".AutomatedAppLaunchWarningActivity" |
| android:theme="@style/Theme.AutomatedAppLaunchWarningActivity.FilterTouches" |
| android:excludeFromRecents="true" |
| android:exported="true" |
| android:launchMode="singleTop"> |
| </activity> |
| |
| </application> |
| |
| </manifest> |