blob: 61c7306e5704e4fb57f393ec15472be268762c1d [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
vadimtb96898a2019-04-05 18:35:29 -070021 <uses-permission android:name="android.permission.KILL_BACKGROUND_PROCESSES"/>
Winson Chungb3fe6612018-10-29 10:45:25 -070022
Sunny Goyal658058b2017-01-21 01:33:02 -080023 <application android:debuggable="true">
vadimtb96898a2019-04-05 18:35:29 -070024 <uses-library android:name="android.test.runner"/>
Sunny Goyal658058b2017-01-21 01:33:02 -080025
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>
vadimtb96898a2019-04-05 18:35:29 -070030 <action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>
Sunny Goyal658058b2017-01-21 01:33:02 -080031 </intent-filter>
32 <meta-data android:name="android.appwidget.provider"
vadimtb96898a2019-04-05 18:35:29 -070033 android:resource="@xml/appwidget_no_config"/>
Sunny Goyal658058b2017-01-21 01:33:02 -080034 </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>
vadimtb96898a2019-04-05 18:35:29 -070040 <action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>
Winson Chung1054d4e2018-03-05 19:39:21 +000041 </intent-filter>
42 <meta-data android:name="android.appwidget.provider"
vadimtb96898a2019-04-05 18:35:29 -070043 android:resource="@xml/appwidget_hidden"/>
Winson Chung1054d4e2018-03-05 19:39:21 +000044 </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>
vadimtb96898a2019-04-05 18:35:29 -070050 <action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>
Sunny Goyal658058b2017-01-21 01:33:02 -080051 </intent-filter>
52 <meta-data android:name="android.appwidget.provider"
vadimtb96898a2019-04-05 18:35:29 -070053 android:resource="@xml/appwidget_with_config"/>
Sunny Goyal658058b2017-01-21 01:33:02 -080054 </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"
vadimtb96898a2019-04-05 18:35:29 -070064 android:icon="@drawable/test_drawable_pin_item"
65 android:label="Test Pin Item">
Sunny Goyald9843352017-01-25 11:19:59 -080066 <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"
vadimtb96898a2019-04-05 18:35:29 -070076 android:exported="true"/>
Sunny Goyal4ed58d62018-10-05 16:19:38 -070077
78 <activity
79 android:name="com.android.launcher3.testcomponent.TestLauncherActivity"
Sunny Goyal4ed58d62018-10-05 16:19:38 -070080 android:clearTaskOnLaunch="true"
Sunny Goyal4ed58d62018-10-05 16:19:38 -070081 android:configChanges="keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenSize|screenLayout|smallestScreenSize"
vadimtb96898a2019-04-05 18:35:29 -070082 android:enabled="false"
83 android:label="Test launcher"
84 android:launchMode="singleTask"
Sunny Goyal4ed58d62018-10-05 16:19:38 -070085 android:process=":testLauncherProcess"
vadimtb96898a2019-04-05 18:35:29 -070086 android:resizeableActivity="true"
87 android:screenOrientation="unspecified"
88 android:stateNotNeeded="true"
89 android:taskAffinity=""
90 android:theme="@android:style/Theme.DeviceDefault.Light"
91 android:windowSoftInputMode="adjustPan">
Sunny Goyal4ed58d62018-10-05 16:19:38 -070092 <intent-filter>
vadimtb96898a2019-04-05 18:35:29 -070093 <action android:name="android.intent.action.MAIN"/>
94 <category android:name="android.intent.category.HOME"/>
95 <category android:name="android.intent.category.DEFAULT"/>
Sunny Goyal4ed58d62018-10-05 16:19:38 -070096 <category android:name="android.intent.category.MONKEY"/>
vadimtb96898a2019-04-05 18:35:29 -070097 <category android:name="android.intent.category.LAUNCHER_APP"/>
Sunny Goyal4ed58d62018-10-05 16:19:38 -070098 </intent-filter>
99 </activity>
vadimtfb0cb7a2019-04-04 17:35:57 -0700100 <activity
101 android:name="com.android.launcher3.testcomponent.BaseTestingActivity"
vadimtf1e0c902019-04-30 19:54:43 -0700102 android:label="LauncherTestApp"
103 android:taskAffinity="com.android.launcher3.testcomponent.Affinity1">
vadimtfb0cb7a2019-04-04 17:35:57 -0700104 <intent-filter>
105 <action android:name="android.intent.action.MAIN"/>
106 <category android:name="android.intent.category.LAUNCHER"/>
107 </intent-filter>
vadimtb96898a2019-04-05 18:35:29 -0700108 <intent-filter>
109 <action android:name="com.android.launcher3.intent.action.test_shortcut"/>
110 <category android:name="android.intent.category.DEFAULT"/>
111 </intent-filter>
112 <meta-data android:name="android.app.shortcuts"
113 android:resource="@xml/shortcuts"/>
vadimtfb0cb7a2019-04-04 17:35:57 -0700114 </activity>
vadimtdb4afbb2019-04-30 18:19:50 -0700115 <activity-alias android:name="Activity2"
116 android:label="TestActivity2"
117 android:targetActivity="com.android.launcher3.testcomponent.BaseTestingActivity">
118 <intent-filter>
119 <action android:name="android.intent.action.MAIN"/>
120 <category android:name="android.intent.category.LAUNCHER"/>
121 </intent-filter>
122 </activity-alias>
123 <activity-alias android:name="Activity3"
124 android:label="TestActivity3"
125 android:targetActivity="com.android.launcher3.testcomponent.BaseTestingActivity">
126 <intent-filter>
127 <action android:name="android.intent.action.MAIN"/>
128 <category android:name="android.intent.category.LAUNCHER"/>
129 </intent-filter>
130 </activity-alias>
131 <activity-alias android:name="Activity4"
132 android:label="TestActivity4"
133 android:targetActivity="com.android.launcher3.testcomponent.BaseTestingActivity">
134 <intent-filter>
135 <action android:name="android.intent.action.MAIN"/>
136 <category android:name="android.intent.category.LAUNCHER"/>
137 </intent-filter>
138 </activity-alias>
139 <activity-alias android:name="Activity5"
140 android:label="TestActivity5"
141 android:targetActivity="com.android.launcher3.testcomponent.BaseTestingActivity">
142 <intent-filter>
143 <action android:name="android.intent.action.MAIN"/>
144 <category android:name="android.intent.category.LAUNCHER"/>
145 </intent-filter>
146 </activity-alias>
147 <activity-alias android:name="Activity6"
148 android:label="TestActivity6"
149 android:targetActivity="com.android.launcher3.testcomponent.BaseTestingActivity">
150 <intent-filter>
151 <action android:name="android.intent.action.MAIN"/>
152 <category android:name="android.intent.category.LAUNCHER"/>
153 </intent-filter>
154 </activity-alias>
155 <activity-alias android:name="Activity7"
156 android:label="TestActivity7"
157 android:targetActivity="com.android.launcher3.testcomponent.BaseTestingActivity">
158 <intent-filter>
159 <action android:name="android.intent.action.MAIN"/>
160 <category android:name="android.intent.category.LAUNCHER"/>
161 </intent-filter>
162 </activity-alias>
163 <activity-alias android:name="Activity8"
164 android:label="TestActivity8"
165 android:targetActivity="com.android.launcher3.testcomponent.BaseTestingActivity">
166 <intent-filter>
167 <action android:name="android.intent.action.MAIN"/>
168 <category android:name="android.intent.category.LAUNCHER"/>
169 </intent-filter>
170 </activity-alias>
171 <activity-alias android:name="Activity9"
172 android:label="TestActivity9"
173 android:targetActivity="com.android.launcher3.testcomponent.BaseTestingActivity">
174 <intent-filter>
175 <action android:name="android.intent.action.MAIN"/>
176 <category android:name="android.intent.category.LAUNCHER"/>
177 </intent-filter>
178 </activity-alias>
179 <activity-alias android:name="Activity10"
180 android:label="TestActivity10"
181 android:targetActivity="com.android.launcher3.testcomponent.BaseTestingActivity">
182 <intent-filter>
183 <action android:name="android.intent.action.MAIN"/>
184 <category android:name="android.intent.category.LAUNCHER"/>
185 </intent-filter>
186 </activity-alias>
Vadim Trysheva8700f62018-08-30 16:01:47 -0700187 <activity-alias android:name="Activity11"
188 android:label="TestActivity11"
189 android:targetActivity="com.android.launcher3.testcomponent.BaseTestingActivity">
190 <intent-filter>
191 <action android:name="android.intent.action.MAIN"/>
192 <category android:name="android.intent.category.LAUNCHER"/>
193 </intent-filter>
194 </activity-alias>
Sunny Goyal658058b2017-01-21 01:33:02 -0800195 </application>
196</manifest>