1*d57664e9SAndroid Build Coastguard Worker<?xml version="1.0" encoding="utf-8"?> 2*d57664e9SAndroid Build Coastguard Worker<!-- Copyright (C) 2008 The Android Open Source Project 3*d57664e9SAndroid Build Coastguard Worker 4*d57664e9SAndroid Build Coastguard Worker Licensed under the Apache License, Version 2.0 (the "License"); 5*d57664e9SAndroid Build Coastguard Worker you may not use this file except in compliance with the License. 6*d57664e9SAndroid Build Coastguard Worker You may obtain a copy of the License at 7*d57664e9SAndroid Build Coastguard Worker 8*d57664e9SAndroid Build Coastguard Worker http://www.apache.org/licenses/LICENSE-2.0 9*d57664e9SAndroid Build Coastguard Worker 10*d57664e9SAndroid Build Coastguard Worker Unless required by applicable law or agreed to in writing, software 11*d57664e9SAndroid Build Coastguard Worker distributed under the License is distributed on an "AS IS" BASIS, 12*d57664e9SAndroid Build Coastguard Worker WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13*d57664e9SAndroid Build Coastguard Worker See the License for the specific language governing permissions and 14*d57664e9SAndroid Build Coastguard Worker limitations under the License. 15*d57664e9SAndroid Build Coastguard Worker--> 16*d57664e9SAndroid Build Coastguard Worker 17*d57664e9SAndroid Build Coastguard Worker<manifest xmlns:android="http://schemas.android.com/apk/res/android" 18*d57664e9SAndroid Build Coastguard Worker package="com.google.android.test.activity"> 19*d57664e9SAndroid Build Coastguard Worker <uses-permission android:name="android.permission.REAL_GET_TASKS"/> 20*d57664e9SAndroid Build Coastguard Worker <uses-permission android:name="android.permission.REORDER_TASKS"/> 21*d57664e9SAndroid Build Coastguard Worker <uses-permission android:name="android.permission.REMOVE_TASKS"/> 22*d57664e9SAndroid Build Coastguard Worker <uses-permission android:name="android.permission.READ_FRAME_BUFFER"/> 23*d57664e9SAndroid Build Coastguard Worker <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS"/> 24*d57664e9SAndroid Build Coastguard Worker <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL"/> 25*d57664e9SAndroid Build Coastguard Worker <uses-permission android:name="android.permission.MANAGE_USERS"/> 26*d57664e9SAndroid Build Coastguard Worker <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/> 27*d57664e9SAndroid Build Coastguard Worker <uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS"/> 28*d57664e9SAndroid Build Coastguard Worker <uses-sdk android:targetSdkVersion="22"/> 29*d57664e9SAndroid Build Coastguard Worker <application android:label="ActivityTest"> 30*d57664e9SAndroid Build Coastguard Worker <activity android:name="ActivityTestMain" 31*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 32*d57664e9SAndroid Build Coastguard Worker <intent-filter> 33*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.MAIN"/> 34*d57664e9SAndroid Build Coastguard Worker <category android:name="android.intent.category.LAUNCHER"/> 35*d57664e9SAndroid Build Coastguard Worker </intent-filter> 36*d57664e9SAndroid Build Coastguard Worker <intent-filter> 37*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.VIEW"/> 38*d57664e9SAndroid Build Coastguard Worker <category android:name="android.intent.category.DEFAULT"/> 39*d57664e9SAndroid Build Coastguard Worker <category android:name="android.intent.category.BROWSABLE"/> 40*d57664e9SAndroid Build Coastguard Worker <data android:scheme="http" 41*d57664e9SAndroid Build Coastguard Worker android:host="www.angryredplanet.com" 42*d57664e9SAndroid Build Coastguard Worker android:pathPrefix=""/> 43*d57664e9SAndroid Build Coastguard Worker </intent-filter> 44*d57664e9SAndroid Build Coastguard Worker <preferred> 45*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.VIEW"/> 46*d57664e9SAndroid Build Coastguard Worker <category android:name="android.intent.category.DEFAULT"/> 47*d57664e9SAndroid Build Coastguard Worker <category android:name="android.intent.category.BROWSABLE"/> 48*d57664e9SAndroid Build Coastguard Worker <data android:scheme="http" 49*d57664e9SAndroid Build Coastguard Worker android:host="www.angryredplanet.com" 50*d57664e9SAndroid Build Coastguard Worker android:pathPrefix=""/> 51*d57664e9SAndroid Build Coastguard Worker </preferred> 52*d57664e9SAndroid Build Coastguard Worker </activity> 53*d57664e9SAndroid Build Coastguard Worker <activity android:name="SpamActivity" 54*d57664e9SAndroid Build Coastguard Worker android:label="Spam!" 55*d57664e9SAndroid Build Coastguard Worker android:documentLaunchMode="always"> 56*d57664e9SAndroid Build Coastguard Worker </activity> 57*d57664e9SAndroid Build Coastguard Worker <activity android:name="DocActivity" 58*d57664e9SAndroid Build Coastguard Worker android:label="Some doc"> 59*d57664e9SAndroid Build Coastguard Worker </activity> 60*d57664e9SAndroid Build Coastguard Worker <service android:name="SingleUserService" 61*d57664e9SAndroid Build Coastguard Worker android:singleUser="true" 62*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 63*d57664e9SAndroid Build Coastguard Worker </service> 64*d57664e9SAndroid Build Coastguard Worker <service android:name="ServiceUserTarget"> 65*d57664e9SAndroid Build Coastguard Worker </service> 66*d57664e9SAndroid Build Coastguard Worker <receiver android:name="UserTarget"> 67*d57664e9SAndroid Build Coastguard Worker </receiver> 68*d57664e9SAndroid Build Coastguard Worker <service android:name="IsolatedService" 69*d57664e9SAndroid Build Coastguard Worker android:isolatedProcess="true"> 70*d57664e9SAndroid Build Coastguard Worker </service> 71*d57664e9SAndroid Build Coastguard Worker <receiver android:name="StartEmpty" 72*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 73*d57664e9SAndroid Build Coastguard Worker <intent-filter> 74*d57664e9SAndroid Build Coastguard Worker <action android:name="com.example.START_EMPTY"/> 75*d57664e9SAndroid Build Coastguard Worker </intent-filter> 76*d57664e9SAndroid Build Coastguard Worker </receiver> 77*d57664e9SAndroid Build Coastguard Worker <service android:name="EmptyService" 78*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 79*d57664e9SAndroid Build Coastguard Worker <intent-filter> 80*d57664e9SAndroid Build Coastguard Worker <action android:name="com.example.START_EMPTY"/> 81*d57664e9SAndroid Build Coastguard Worker </intent-filter> 82*d57664e9SAndroid Build Coastguard Worker </service> 83*d57664e9SAndroid Build Coastguard Worker <receiver android:name="SingleUserReceiver" 84*d57664e9SAndroid Build Coastguard Worker android:singleUser="true" 85*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 86*d57664e9SAndroid Build Coastguard Worker </receiver> 87*d57664e9SAndroid Build Coastguard Worker <provider android:name="SingleUserProvider" 88*d57664e9SAndroid Build Coastguard Worker android:authorities="com.google.android.test.activity.single_user" 89*d57664e9SAndroid Build Coastguard Worker android:singleUser="true" 90*d57664e9SAndroid Build Coastguard Worker android:exported="true"/> 91*d57664e9SAndroid Build Coastguard Worker <receiver android:name="TrackTimeReceiver"/> 92*d57664e9SAndroid Build Coastguard Worker <receiver android:name="AlarmSpamReceiver"/> 93*d57664e9SAndroid Build Coastguard Worker <receiver android:name="SlowReceiver"/> 94*d57664e9SAndroid Build Coastguard Worker <activity android:name="DisableScreenshotsActivity" 95*d57664e9SAndroid Build Coastguard Worker android:label="DisableScreenshots" 96*d57664e9SAndroid Build Coastguard Worker android:theme="@style/DisableScreenshots" 97*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 98*d57664e9SAndroid Build Coastguard Worker <intent-filter> 99*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.MAIN"/> 100*d57664e9SAndroid Build Coastguard Worker <category android:name="android.intent.category.LAUNCHER"/> 101*d57664e9SAndroid Build Coastguard Worker </intent-filter> 102*d57664e9SAndroid Build Coastguard Worker </activity> 103*d57664e9SAndroid Build Coastguard Worker <activity android:name="CustomSplashscreenActivity" 104*d57664e9SAndroid Build Coastguard Worker android:label="CustomSplashscreen" 105*d57664e9SAndroid Build Coastguard Worker android:theme="@style/CustomSplashscreen" 106*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 107*d57664e9SAndroid Build Coastguard Worker <intent-filter> 108*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.MAIN"/> 109*d57664e9SAndroid Build Coastguard Worker <category android:name="android.intent.category.LAUNCHER"/> 110*d57664e9SAndroid Build Coastguard Worker </intent-filter> 111*d57664e9SAndroid Build Coastguard Worker </activity> 112*d57664e9SAndroid Build Coastguard Worker </application> 113*d57664e9SAndroid Build Coastguard Worker</manifest> 114