blob: 089d672b1638053c741cd1ae4f740defa2fe40a9 [file] [log] [blame]
Sunny Goyal658058b2017-01-21 01:33:02 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2017 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
18 xmlns:android="http://schemas.android.com/apk/res/android"
19 package="com.android.launcher3.tests">
20
Winson Chungb3fe6612018-10-29 10:45:25 -070021 <uses-permission android:name="android.permission.KILL_BACKGROUND_PROCESSES" />
22
Sunny Goyal658058b2017-01-21 01:33:02 -080023 <application android:debuggable="true">
24 <uses-library android:name="android.test.runner" />
25
Sunny Goyald9843352017-01-25 11:19:59 -080026 <receiver
27 android:name="com.android.launcher3.testcomponent.AppWidgetNoConfig"
28 android:label="No Config">
Sunny Goyal658058b2017-01-21 01:33:02 -080029 <intent-filter>
30 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
31 </intent-filter>
32 <meta-data android:name="android.appwidget.provider"
33 android:resource="@xml/appwidget_no_config" />
34 </receiver>
35
Winson Chung1054d4e2018-03-05 19:39:21 +000036 <receiver
37 android:name="com.android.launcher3.testcomponent.AppWdigetHidden"
38 android:label="Hidden widget">
39 <intent-filter>
40 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
41 </intent-filter>
42 <meta-data android:name="android.appwidget.provider"
43 android:resource="@xml/appwidget_hidden" />
44 </receiver>
45
Sunny Goyald9843352017-01-25 11:19:59 -080046 <receiver
47 android:name="com.android.launcher3.testcomponent.AppWidgetWithConfig"
48 android:label="With Config">
Sunny Goyal658058b2017-01-21 01:33:02 -080049 <intent-filter>
50 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
51 </intent-filter>
52 <meta-data android:name="android.appwidget.provider"
53 android:resource="@xml/appwidget_with_config" />
54 </receiver>
55
56 <activity
57 android:name="com.android.launcher3.testcomponent.WidgetConfigActivity">
58 <intent-filter>
59 <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE"/>
60 </intent-filter>
61 </activity>
Sunny Goyald9843352017-01-25 11:19:59 -080062 <activity
63 android:name="com.android.launcher3.testcomponent.RequestPinItemActivity"
64 android:label="Test Pin Item"
65 android:icon="@drawable/test_drawable_pin_item">
66 <intent-filter>
67 <action android:name="android.intent.action.MAIN"/>
68 <category android:name="android.intent.category.LAUNCHER"/>
69 <category android:name="android.intent.category.DEFAULT"/>
70 </intent-filter>
71 </activity>
Sunny Goyal4ed58d62018-10-05 16:19:38 -070072
73 <provider
74 android:name="com.android.launcher3.testcomponent.TestCommandReceiver"
75 android:authorities="${packageName}.commands"
76 android:exported="true" />
77
78 <activity
79 android:name="com.android.launcher3.testcomponent.TestLauncherActivity"
80 android:launchMode="singleTask"
81 android:clearTaskOnLaunch="true"
82 android:label="Test launcher"
83 android:stateNotNeeded="true"
84 android:theme="@android:style/Theme.DeviceDefault.Light"
85 android:windowSoftInputMode="adjustPan"
86 android:screenOrientation="unspecified"
87 android:configChanges="keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenSize|screenLayout|smallestScreenSize"
88 android:resizeableActivity="true"
89 android:taskAffinity=""
90 android:process=":testLauncherProcess"
91 android:enabled="false">
92 <intent-filter>
93 <action android:name="android.intent.action.MAIN" />
94 <category android:name="android.intent.category.HOME" />
95 <category android:name="android.intent.category.DEFAULT" />
96 <category android:name="android.intent.category.MONKEY"/>
97 <category android:name="android.intent.category.LAUNCHER_APP" />
98 </intent-filter>
99 </activity>
vadimtfb0cb7a2019-04-04 17:35:57 -0700100 <activity
101 android:name="com.android.launcher3.testcomponent.BaseTestingActivity"
102 android:label="LauncherTestApp">
103 <intent-filter>
104 <action android:name="android.intent.action.MAIN"/>
105 <category android:name="android.intent.category.LAUNCHER"/>
106 </intent-filter>
107 </activity>
Sunny Goyal658058b2017-01-21 01:33:02 -0800108 </application>
109</manifest>