blob: 9dfe4a1f99c7594d788bcd6d29c571286ff75254 [file] [log] [blame]
Dianne Hackbornf26fd992011-04-08 18:14:09 -07001<?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.GET_TASKS" />
Dianne Hackborn0c5001d2011-04-12 18:16:08 -070020 <uses-permission android:name="android.permission.REORDER_TASKS" />
21 <uses-permission android:name="android.permission.REMOVE_TASKS" />
Dianne Hackbornf26fd992011-04-08 18:14:09 -070022 <uses-permission android:name="android.permission.READ_FRAME_BUFFER" />
Dianne Hackbornb4163a62012-08-02 18:31:26 -070023 <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS" />
Dianne Hackbornf26fd992011-04-08 18:14:09 -070024 <application android:label="ActivityTest">
25 <activity android:name="ActivityTestMain">
26 <intent-filter>
27 <action android:name="android.intent.action.MAIN" />
28 <category android:name="android.intent.category.LAUNCHER" />
29 </intent-filter>
30 </activity>
Dianne Hackbornb4163a62012-08-02 18:31:26 -070031 <service android:name="SingleUserService"
32 android:singleUser="true" android:exported="true">
33 </service>
34 <receiver android:name="UserTarget">
35 </receiver>
Dianne Hackborn7d19e022012-08-07 19:12:33 -070036 <receiver android:name="SingleUserReceiver"
37 android:singleUser="true" android:exported="true" >
38 </receiver>
39 <provider android:name="SingleUserProvider"
40 android:authorities="com.google.android.test.activity.single_user"
41 android:singleUser="true" android:exported="true" />
Dianne Hackbornf26fd992011-04-08 18:14:09 -070042 </application>
43</manifest>