blob: 6c4a335f2fd765a9a859e0ad457af5aef65fa6a1 [file] [log] [blame]
Jeff Sharkey6302bb52014-10-07 12:09:40 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2014 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"
Todd Kennedyef23d4f2018-06-27 10:40:38 -070018 package="com.android.cts.splitapp"
19 android:targetSandboxVersion="2">
Todd Kennedy9a554002018-08-28 16:21:56 -070020
Kenny Root167c8742020-02-04 15:39:28 -080021 <uses-sdk android:minSdkVersion="4" />
Jeff Sharkey6302bb52014-10-07 12:09:40 -070022
Patrick Baumann1141c002020-09-18 10:13:10 -070023 <uses-permission android:name="android.permission.CAMERA"/>
24 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
25 <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES"/>
Jeff Sharkey6302bb52014-10-07 12:09:40 -070026
Patrick Baumann1141c002020-09-18 10:13:10 -070027 <application android:label="SplitApp" android:multiArch="true">
Jeff Sharkey6302bb52014-10-07 12:09:40 -070028 <activity android:name=".MyActivity">
29 <intent-filter>
30 <action android:name="android.intent.action.MAIN" />
31 <category android:name="android.intent.category.LAUNCHER" />
32 </intent-filter>
33 <meta-data android:name="android.service.wallpaper" android:resource="@xml/my_activity_meta" />
34 </activity>
35 <receiver android:name=".MyReceiver"
36 android:enabled="@bool/my_receiver_enabled">
37 <intent-filter>
38 <action android:name="android.intent.action.DATE_CHANGED" />
39 </intent-filter>
40 </receiver>
Jeff Sharkeyd837c462016-04-01 23:23:08 -060041 <receiver android:name=".LockedBootReceiver" android:exported="true" android:directBootAware="true">
42 <intent-filter>
43 <action android:name="android.intent.action.LOCKED_BOOT_COMPLETED" />
44 </intent-filter>
45 </receiver>
46 <receiver android:name=".BootReceiver" android:exported="true">
47 <intent-filter>
48 <action android:name="android.intent.action.BOOT_COMPLETED" />
49 </intent-filter>
50 </receiver>
Jeff Sharkey6302bb52014-10-07 12:09:40 -070051
Kenny Root167c8742020-02-04 15:39:28 -080052 <provider android:name=".RemoteQueryProvider"
53 android:authorities="com.android.cts.splitapp"
54 android:exported="true"
55 android:directBootAware="true">
56 </provider>
57
Jeff Sharkey6302bb52014-10-07 12:09:40 -070058 <uses-library android:name="android.test.runner" />
59 </application>
60
Brett Chabot244f0382019-02-15 13:02:34 -080061 <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
Jeff Sharkey6302bb52014-10-07 12:09:40 -070062 android:targetPackage="com.android.cts.splitapp" />
63
64</manifest>