Dianne Hackborn | f26fd99 | 2011-04-08 18:14:09 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2008 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.google.android.test.activity"> |
Dianne Hackborn | 2d7576b | 2014-10-03 16:26:04 -0700 | [diff] [blame] | 19 | <uses-permission android:name="android.permission.REAL_GET_TASKS" /> |
Dianne Hackborn | 0c5001d | 2011-04-12 18:16:08 -0700 | [diff] [blame] | 20 | <uses-permission android:name="android.permission.REORDER_TASKS" /> |
| 21 | <uses-permission android:name="android.permission.REMOVE_TASKS" /> |
Dianne Hackborn | f26fd99 | 2011-04-08 18:14:09 -0700 | [diff] [blame] | 22 | <uses-permission android:name="android.permission.READ_FRAME_BUFFER" /> |
Dianne Hackborn | b4163a6 | 2012-08-02 18:31:26 -0700 | [diff] [blame] | 23 | <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS" /> |
Dianne Hackborn | 3992645 | 2012-09-25 14:53:52 -0700 | [diff] [blame] | 24 | <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" /> |
| 25 | <uses-permission android:name="android.permission.MANAGE_USERS" /> |
Dianne Hackborn | 15ed275 | 2014-08-18 15:08:33 -0700 | [diff] [blame] | 26 | <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" /> |
Dianne Hackborn | f26fd99 | 2011-04-08 18:14:09 -0700 | [diff] [blame] | 27 | <application android:label="ActivityTest"> |
| 28 | <activity android:name="ActivityTestMain"> |
| 29 | <intent-filter> |
| 30 | <action android:name="android.intent.action.MAIN" /> |
| 31 | <category android:name="android.intent.category.LAUNCHER" /> |
| 32 | </intent-filter> |
Dianne Hackborn | eeb2c7e | 2014-09-23 16:45:39 -0700 | [diff] [blame] | 33 | <intent-filter> |
| 34 | <action android:name="android.intent.action.VIEW" /> |
| 35 | <category android:name="android.intent.category.DEFAULT" /> |
| 36 | <category android:name="android.intent.category.BROWSABLE" /> |
| 37 | <data android:scheme="http" android:host="www.angryredplanet.com" |
| 38 | android:pathPrefix="" /> |
| 39 | </intent-filter> |
| 40 | <preferred> |
| 41 | <action android:name="android.intent.action.VIEW" /> |
| 42 | <category android:name="android.intent.category.DEFAULT" /> |
| 43 | <category android:name="android.intent.category.BROWSABLE" /> |
| 44 | <data android:scheme="http" android:host="www.angryredplanet.com" |
| 45 | android:pathPrefix="" /> |
| 46 | </preferred> |
Dianne Hackborn | f26fd99 | 2011-04-08 18:14:09 -0700 | [diff] [blame] | 47 | </activity> |
Dianne Hackborn | 89ad456 | 2014-08-24 16:45:38 -0700 | [diff] [blame] | 48 | <activity android:name="SpamActivity" android:label="Spam!" |
| 49 | android:documentLaunchMode="always"> |
| 50 | </activity> |
| 51 | <activity android:name="DocActivity" android:label="Some doc"> |
| 52 | </activity> |
Dianne Hackborn | b4163a6 | 2012-08-02 18:31:26 -0700 | [diff] [blame] | 53 | <service android:name="SingleUserService" |
| 54 | android:singleUser="true" android:exported="true"> |
| 55 | </service> |
Dianne Hackborn | 3992645 | 2012-09-25 14:53:52 -0700 | [diff] [blame] | 56 | <service android:name="ServiceUserTarget"> |
| 57 | </service> |
Dianne Hackborn | b4163a6 | 2012-08-02 18:31:26 -0700 | [diff] [blame] | 58 | <receiver android:name="UserTarget"> |
| 59 | </receiver> |
Dianne Hackborn | 875e464 | 2014-12-01 16:22:14 -0800 | [diff] [blame] | 60 | <service android:name="IsolatedService" android:isolatedProcess="true"> |
| 61 | </service> |
Dianne Hackborn | 4f0e4a9 | 2014-11-19 14:21:07 -0800 | [diff] [blame] | 62 | <receiver android:name="StartEmpty" android:exported="true"> |
| 63 | <intent-filter> |
| 64 | <action android:name="com.example.START_EMPTY" /> |
| 65 | </intent-filter> |
| 66 | </receiver> |
| 67 | <service android:name="EmptyService" android:exported="true"> |
| 68 | <intent-filter> |
| 69 | <action android:name="com.example.START_EMPTY" /> |
| 70 | </intent-filter> |
| 71 | </service> |
Dianne Hackborn | 7d19e02 | 2012-08-07 19:12:33 -0700 | [diff] [blame] | 72 | <receiver android:name="SingleUserReceiver" |
| 73 | android:singleUser="true" android:exported="true" > |
| 74 | </receiver> |
| 75 | <provider android:name="SingleUserProvider" |
| 76 | android:authorities="com.google.android.test.activity.single_user" |
| 77 | android:singleUser="true" android:exported="true" /> |
Dianne Hackborn | b5a380d | 2015-05-20 18:18:46 -0700 | [diff] [blame] | 78 | <receiver android:name="TrackTimeReceiver" /> |
Dianne Hackborn | 3d1933c4 | 2015-06-10 16:25:57 -0700 | [diff] [blame] | 79 | <receiver android:name="AlarmSpamReceiver" /> |
Dianne Hackborn | f26fd99 | 2011-04-08 18:14:09 -0700 | [diff] [blame] | 80 | </application> |
| 81 | </manifest> |