blob: c6f55a71789c45c08905af2f57aa3c1fbd9cb7f4 [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
vadimt94734212019-08-05 17:31:53 -070023 <uses-permission android:name="android.permission.PACKAGE_USAGE_STATS"/>
24 <uses-permission android:name="android.permission.READ_LOGS"/>
25
Sunny Goyal658058b2017-01-21 01:33:02 -080026 <application android:debuggable="true">
vadimtb96898a2019-04-05 18:35:29 -070027 <uses-library android:name="android.test.runner"/>
Sunny Goyal658058b2017-01-21 01:33:02 -080028
Sunny Goyald9843352017-01-25 11:19:59 -080029 <receiver
30 android:name="com.android.launcher3.testcomponent.AppWidgetNoConfig"
31 android:label="No Config">
Sunny Goyal658058b2017-01-21 01:33:02 -080032 <intent-filter>
vadimtb96898a2019-04-05 18:35:29 -070033 <action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>
Sunny Goyal658058b2017-01-21 01:33:02 -080034 </intent-filter>
35 <meta-data android:name="android.appwidget.provider"
vadimtb96898a2019-04-05 18:35:29 -070036 android:resource="@xml/appwidget_no_config"/>
Sunny Goyal658058b2017-01-21 01:33:02 -080037 </receiver>
38
Winson Chung1054d4e2018-03-05 19:39:21 +000039 <receiver
40 android:name="com.android.launcher3.testcomponent.AppWdigetHidden"
41 android:label="Hidden widget">
42 <intent-filter>
vadimtb96898a2019-04-05 18:35:29 -070043 <action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>
Winson Chung1054d4e2018-03-05 19:39:21 +000044 </intent-filter>
45 <meta-data android:name="android.appwidget.provider"
vadimtb96898a2019-04-05 18:35:29 -070046 android:resource="@xml/appwidget_hidden"/>
Winson Chung1054d4e2018-03-05 19:39:21 +000047 </receiver>
48
Sunny Goyald9843352017-01-25 11:19:59 -080049 <receiver
50 android:name="com.android.launcher3.testcomponent.AppWidgetWithConfig"
51 android:label="With Config">
Sunny Goyal658058b2017-01-21 01:33:02 -080052 <intent-filter>
vadimtb96898a2019-04-05 18:35:29 -070053 <action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>
Sunny Goyal658058b2017-01-21 01:33:02 -080054 </intent-filter>
55 <meta-data android:name="android.appwidget.provider"
vadimtb96898a2019-04-05 18:35:29 -070056 android:resource="@xml/appwidget_with_config"/>
Sunny Goyal658058b2017-01-21 01:33:02 -080057 </receiver>
58
59 <activity
60 android:name="com.android.launcher3.testcomponent.WidgetConfigActivity">
61 <intent-filter>
62 <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE"/>
63 </intent-filter>
64 </activity>
Sunny Goyald9843352017-01-25 11:19:59 -080065 <activity
66 android:name="com.android.launcher3.testcomponent.RequestPinItemActivity"
vadimtb96898a2019-04-05 18:35:29 -070067 android:icon="@drawable/test_drawable_pin_item"
68 android:label="Test Pin Item">
Sunny Goyald9843352017-01-25 11:19:59 -080069 <intent-filter>
70 <action android:name="android.intent.action.MAIN"/>
71 <category android:name="android.intent.category.LAUNCHER"/>
72 <category android:name="android.intent.category.DEFAULT"/>
73 </intent-filter>
74 </activity>
Sunny Goyal4ed58d62018-10-05 16:19:38 -070075
76 <provider
77 android:name="com.android.launcher3.testcomponent.TestCommandReceiver"
78 android:authorities="${packageName}.commands"
vadimtb96898a2019-04-05 18:35:29 -070079 android:exported="true"/>
Sunny Goyal4ed58d62018-10-05 16:19:38 -070080
81 <activity
82 android:name="com.android.launcher3.testcomponent.TestLauncherActivity"
Sunny Goyal4ed58d62018-10-05 16:19:38 -070083 android:clearTaskOnLaunch="true"
Sunny Goyal4ed58d62018-10-05 16:19:38 -070084 android:configChanges="keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenSize|screenLayout|smallestScreenSize"
vadimtb96898a2019-04-05 18:35:29 -070085 android:enabled="false"
86 android:label="Test launcher"
87 android:launchMode="singleTask"
Sunny Goyal4ed58d62018-10-05 16:19:38 -070088 android:process=":testLauncherProcess"
vadimtb96898a2019-04-05 18:35:29 -070089 android:resizeableActivity="true"
90 android:screenOrientation="unspecified"
91 android:stateNotNeeded="true"
92 android:taskAffinity=""
93 android:theme="@android:style/Theme.DeviceDefault.Light"
94 android:windowSoftInputMode="adjustPan">
Sunny Goyal4ed58d62018-10-05 16:19:38 -070095 <intent-filter>
vadimtb96898a2019-04-05 18:35:29 -070096 <action android:name="android.intent.action.MAIN"/>
97 <category android:name="android.intent.category.HOME"/>
98 <category android:name="android.intent.category.DEFAULT"/>
Sunny Goyal4ed58d62018-10-05 16:19:38 -070099 <category android:name="android.intent.category.MONKEY"/>
vadimtb96898a2019-04-05 18:35:29 -0700100 <category android:name="android.intent.category.LAUNCHER_APP"/>
Sunny Goyal4ed58d62018-10-05 16:19:38 -0700101 </intent-filter>
102 </activity>
vadimtfb0cb7a2019-04-04 17:35:57 -0700103 <activity
104 android:name="com.android.launcher3.testcomponent.BaseTestingActivity"
vadimtf1e0c902019-04-30 19:54:43 -0700105 android:label="LauncherTestApp"
106 android:taskAffinity="com.android.launcher3.testcomponent.Affinity1">
vadimtfb0cb7a2019-04-04 17:35:57 -0700107 <intent-filter>
108 <action android:name="android.intent.action.MAIN"/>
109 <category android:name="android.intent.category.LAUNCHER"/>
110 </intent-filter>
vadimtb96898a2019-04-05 18:35:29 -0700111 <intent-filter>
112 <action android:name="com.android.launcher3.intent.action.test_shortcut"/>
113 <category android:name="android.intent.category.DEFAULT"/>
114 </intent-filter>
115 <meta-data android:name="android.app.shortcuts"
116 android:resource="@xml/shortcuts"/>
vadimtfb0cb7a2019-04-04 17:35:57 -0700117 </activity>
vadimtdb4afbb2019-04-30 18:19:50 -0700118 <activity-alias android:name="Activity2"
119 android:label="TestActivity2"
120 android:targetActivity="com.android.launcher3.testcomponent.BaseTestingActivity">
121 <intent-filter>
122 <action android:name="android.intent.action.MAIN"/>
123 <category android:name="android.intent.category.LAUNCHER"/>
124 </intent-filter>
125 </activity-alias>
126 <activity-alias android:name="Activity3"
127 android:label="TestActivity3"
128 android:targetActivity="com.android.launcher3.testcomponent.BaseTestingActivity">
129 <intent-filter>
130 <action android:name="android.intent.action.MAIN"/>
131 <category android:name="android.intent.category.LAUNCHER"/>
132 </intent-filter>
133 </activity-alias>
134 <activity-alias android:name="Activity4"
135 android:label="TestActivity4"
136 android:targetActivity="com.android.launcher3.testcomponent.BaseTestingActivity">
137 <intent-filter>
138 <action android:name="android.intent.action.MAIN"/>
139 <category android:name="android.intent.category.LAUNCHER"/>
140 </intent-filter>
141 </activity-alias>
142 <activity-alias android:name="Activity5"
143 android:label="TestActivity5"
144 android:targetActivity="com.android.launcher3.testcomponent.BaseTestingActivity">
145 <intent-filter>
146 <action android:name="android.intent.action.MAIN"/>
147 <category android:name="android.intent.category.LAUNCHER"/>
148 </intent-filter>
149 </activity-alias>
150 <activity-alias android:name="Activity6"
151 android:label="TestActivity6"
152 android:targetActivity="com.android.launcher3.testcomponent.BaseTestingActivity">
153 <intent-filter>
154 <action android:name="android.intent.action.MAIN"/>
155 <category android:name="android.intent.category.LAUNCHER"/>
156 </intent-filter>
157 </activity-alias>
158 <activity-alias android:name="Activity7"
159 android:label="TestActivity7"
160 android:targetActivity="com.android.launcher3.testcomponent.BaseTestingActivity">
161 <intent-filter>
162 <action android:name="android.intent.action.MAIN"/>
163 <category android:name="android.intent.category.LAUNCHER"/>
164 </intent-filter>
165 </activity-alias>
166 <activity-alias android:name="Activity8"
167 android:label="TestActivity8"
168 android:targetActivity="com.android.launcher3.testcomponent.BaseTestingActivity">
169 <intent-filter>
170 <action android:name="android.intent.action.MAIN"/>
171 <category android:name="android.intent.category.LAUNCHER"/>
172 </intent-filter>
173 </activity-alias>
174 <activity-alias android:name="Activity9"
175 android:label="TestActivity9"
176 android:targetActivity="com.android.launcher3.testcomponent.BaseTestingActivity">
177 <intent-filter>
178 <action android:name="android.intent.action.MAIN"/>
179 <category android:name="android.intent.category.LAUNCHER"/>
180 </intent-filter>
181 </activity-alias>
182 <activity-alias android:name="Activity10"
183 android:label="TestActivity10"
184 android:targetActivity="com.android.launcher3.testcomponent.BaseTestingActivity">
185 <intent-filter>
186 <action android:name="android.intent.action.MAIN"/>
187 <category android:name="android.intent.category.LAUNCHER"/>
188 </intent-filter>
189 </activity-alias>
Vadim Trysheva8700f62018-08-30 16:01:47 -0700190 <activity-alias android:name="Activity11"
191 android:label="TestActivity11"
192 android:targetActivity="com.android.launcher3.testcomponent.BaseTestingActivity">
193 <intent-filter>
194 <action android:name="android.intent.action.MAIN"/>
195 <category android:name="android.intent.category.LAUNCHER"/>
196 </intent-filter>
197 </activity-alias>
Sunny Goyal658058b2017-01-21 01:33:02 -0800198 </application>
199</manifest>