OSDN Git Service

Don't crash when primary volume is null in AppCollector.
[android-x86/frameworks-base.git] / tests / ActivityTests / AndroidManifest.xml
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">
19     <uses-permission android:name="android.permission.REAL_GET_TASKS" />
20     <uses-permission android:name="android.permission.REORDER_TASKS" />
21     <uses-permission android:name="android.permission.REMOVE_TASKS" />
22     <uses-permission android:name="android.permission.READ_FRAME_BUFFER" />
23     <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS" />
24     <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" />
25     <uses-permission android:name="android.permission.MANAGE_USERS" />
26     <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
27     <uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" />
28     <uses-sdk android:targetSdkVersion="22" />
29     <application android:label="ActivityTest">
30         <activity android:name="ActivityTestMain">
31             <intent-filter>
32                 <action android:name="android.intent.action.MAIN" />
33                 <category android:name="android.intent.category.LAUNCHER" />
34             </intent-filter>
35             <intent-filter>
36                 <action android:name="android.intent.action.VIEW" />
37                 <category android:name="android.intent.category.DEFAULT" />
38                 <category android:name="android.intent.category.BROWSABLE" />
39                 <data android:scheme="http" android:host="www.angryredplanet.com"
40                         android:pathPrefix="" />
41             </intent-filter>
42             <preferred>
43                 <action android:name="android.intent.action.VIEW" />
44                 <category android:name="android.intent.category.DEFAULT" />
45                 <category android:name="android.intent.category.BROWSABLE" />
46                 <data android:scheme="http" android:host="www.angryredplanet.com"
47                         android:pathPrefix="" />
48             </preferred>
49         </activity>
50         <activity android:name="SpamActivity" android:label="Spam!"
51                 android:documentLaunchMode="always">
52         </activity>
53         <activity android:name="DocActivity" android:label="Some doc">
54         </activity>
55         <service android:name="SingleUserService"
56             android:singleUser="true" android:exported="true">
57         </service>
58         <service android:name="ServiceUserTarget">
59         </service>
60         <receiver android:name="UserTarget">
61         </receiver>
62         <service android:name="IsolatedService" android:isolatedProcess="true">
63         </service>
64         <receiver android:name="StartEmpty" android:exported="true">
65             <intent-filter>
66                 <action android:name="com.example.START_EMPTY" />
67             </intent-filter>
68         </receiver>
69         <service android:name="EmptyService" android:exported="true">
70             <intent-filter>
71                 <action android:name="com.example.START_EMPTY" />
72             </intent-filter>
73         </service>
74         <receiver android:name="SingleUserReceiver"
75             android:singleUser="true" android:exported="true" >
76         </receiver>
77         <provider android:name="SingleUserProvider"
78             android:authorities="com.google.android.test.activity.single_user"
79             android:singleUser="true" android:exported="true" />
80         <receiver android:name="TrackTimeReceiver" />
81         <receiver android:name="AlarmSpamReceiver" />
82     </application>
83 </manifest>