2011-04-08 18:14:09 -07:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!-- Copyright (C) 2008 The Android Open Source Project
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="com.google.android.test.activity">
|
|
|
|
<uses-permission android:name="android.permission.GET_TASKS" />
|
2011-04-12 18:16:08 -07:00
|
|
|
<uses-permission android:name="android.permission.REORDER_TASKS" />
|
|
|
|
<uses-permission android:name="android.permission.REMOVE_TASKS" />
|
2011-04-08 18:14:09 -07:00
|
|
|
<uses-permission android:name="android.permission.READ_FRAME_BUFFER" />
|
2012-08-02 18:31:26 -07:00
|
|
|
<uses-permission android:name="android.permission.INTERACT_ACROSS_USERS" />
|
2012-09-25 14:53:52 -07:00
|
|
|
<uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" />
|
|
|
|
<uses-permission android:name="android.permission.MANAGE_USERS" />
|
2011-04-08 18:14:09 -07:00
|
|
|
<application android:label="ActivityTest">
|
|
|
|
<activity android:name="ActivityTestMain">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2012-08-02 18:31:26 -07:00
|
|
|
<service android:name="SingleUserService"
|
|
|
|
android:singleUser="true" android:exported="true">
|
|
|
|
</service>
|
2012-09-25 14:53:52 -07:00
|
|
|
<service android:name="ServiceUserTarget">
|
|
|
|
</service>
|
2012-08-02 18:31:26 -07:00
|
|
|
<receiver android:name="UserTarget">
|
|
|
|
</receiver>
|
2012-08-07 19:12:33 -07:00
|
|
|
<receiver android:name="SingleUserReceiver"
|
|
|
|
android:singleUser="true" android:exported="true" >
|
|
|
|
</receiver>
|
|
|
|
<provider android:name="SingleUserProvider"
|
|
|
|
android:authorities="com.google.android.test.activity.single_user"
|
|
|
|
android:singleUser="true" android:exported="true" />
|
2011-04-08 18:14:09 -07:00
|
|
|
</application>
|
|
|
|
</manifest>
|