blob: 56eca6dd58225116a9d818c99bda9e797be9b69d [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>
Pinyao Tingd7fdcab2019-10-03 10:15:30 -070065 <activity android:name="com.android.launcher3.testcomponent.CustomShortcutConfigActivity">
Pinyao Tingd625e492019-10-02 11:25:44 -070066 <intent-filter>
67 <action android:name="android.intent.action.CREATE_SHORTCUT" />
68 <category android:name="android.intent.category.DEFAULT" />
69 </intent-filter>
70 </activity>
Sunny Goyald9843352017-01-25 11:19:59 -080071 <activity
72 android:name="com.android.launcher3.testcomponent.RequestPinItemActivity"
vadimtb96898a2019-04-05 18:35:29 -070073 android:icon="@drawable/test_drawable_pin_item"
74 android:label="Test Pin Item">
Sunny Goyald9843352017-01-25 11:19:59 -080075 <intent-filter>
76 <action android:name="android.intent.action.MAIN"/>
77 <category android:name="android.intent.category.LAUNCHER"/>
78 <category android:name="android.intent.category.DEFAULT"/>
79 </intent-filter>
80 </activity>
Sunny Goyal4ed58d62018-10-05 16:19:38 -070081
Sunny Goyal8f90d5d2019-09-18 22:29:40 -070082 <service
83 android:name="com.android.launcher3.testcomponent.ListViewService"
84 android:permission="android.permission.BIND_REMOTEVIEWS" />
85
Sunny Goyal4ed58d62018-10-05 16:19:38 -070086 <provider
Sunny Goyal8f90d5d2019-09-18 22:29:40 -070087 android:name="com.android.launcher3.testcomponent.TestCommandProvider"
Sunny Goyal4ed58d62018-10-05 16:19:38 -070088 android:authorities="${packageName}.commands"
vadimtb96898a2019-04-05 18:35:29 -070089 android:exported="true"/>
Sunny Goyal4ed58d62018-10-05 16:19:38 -070090
91 <activity
92 android:name="com.android.launcher3.testcomponent.TestLauncherActivity"
Sunny Goyal4ed58d62018-10-05 16:19:38 -070093 android:clearTaskOnLaunch="true"
Sunny Goyal4ed58d62018-10-05 16:19:38 -070094 android:configChanges="keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenSize|screenLayout|smallestScreenSize"
vadimtb96898a2019-04-05 18:35:29 -070095 android:enabled="false"
96 android:label="Test launcher"
97 android:launchMode="singleTask"
Sunny Goyal4ed58d62018-10-05 16:19:38 -070098 android:process=":testLauncherProcess"
vadimtb96898a2019-04-05 18:35:29 -070099 android:resizeableActivity="true"
100 android:screenOrientation="unspecified"
101 android:stateNotNeeded="true"
102 android:taskAffinity=""
103 android:theme="@android:style/Theme.DeviceDefault.Light"
104 android:windowSoftInputMode="adjustPan">
Sunny Goyal4ed58d62018-10-05 16:19:38 -0700105 <intent-filter>
vadimtb96898a2019-04-05 18:35:29 -0700106 <action android:name="android.intent.action.MAIN"/>
107 <category android:name="android.intent.category.HOME"/>
108 <category android:name="android.intent.category.DEFAULT"/>
Sunny Goyal4ed58d62018-10-05 16:19:38 -0700109 <category android:name="android.intent.category.MONKEY"/>
vadimtb96898a2019-04-05 18:35:29 -0700110 <category android:name="android.intent.category.LAUNCHER_APP"/>
Sunny Goyal4ed58d62018-10-05 16:19:38 -0700111 </intent-filter>
112 </activity>
vadimtfb0cb7a2019-04-04 17:35:57 -0700113 <activity
114 android:name="com.android.launcher3.testcomponent.BaseTestingActivity"
vadimtf1e0c902019-04-30 19:54:43 -0700115 android:label="LauncherTestApp"
116 android:taskAffinity="com.android.launcher3.testcomponent.Affinity1">
vadimtfb0cb7a2019-04-04 17:35:57 -0700117 <intent-filter>
118 <action android:name="android.intent.action.MAIN"/>
119 <category android:name="android.intent.category.LAUNCHER"/>
120 </intent-filter>
vadimtb96898a2019-04-05 18:35:29 -0700121 <intent-filter>
122 <action android:name="com.android.launcher3.intent.action.test_shortcut"/>
123 <category android:name="android.intent.category.DEFAULT"/>
124 </intent-filter>
125 <meta-data android:name="android.app.shortcuts"
126 android:resource="@xml/shortcuts"/>
vadimtfb0cb7a2019-04-04 17:35:57 -0700127 </activity>
vadimtdb4afbb2019-04-30 18:19:50 -0700128 <activity-alias android:name="Activity2"
129 android:label="TestActivity2"
130 android:targetActivity="com.android.launcher3.testcomponent.BaseTestingActivity">
131 <intent-filter>
132 <action android:name="android.intent.action.MAIN"/>
133 <category android:name="android.intent.category.LAUNCHER"/>
134 </intent-filter>
135 </activity-alias>
136 <activity-alias android:name="Activity3"
137 android:label="TestActivity3"
138 android:targetActivity="com.android.launcher3.testcomponent.BaseTestingActivity">
139 <intent-filter>
140 <action android:name="android.intent.action.MAIN"/>
141 <category android:name="android.intent.category.LAUNCHER"/>
142 </intent-filter>
143 </activity-alias>
144 <activity-alias android:name="Activity4"
145 android:label="TestActivity4"
146 android:targetActivity="com.android.launcher3.testcomponent.BaseTestingActivity">
147 <intent-filter>
148 <action android:name="android.intent.action.MAIN"/>
149 <category android:name="android.intent.category.LAUNCHER"/>
150 </intent-filter>
151 </activity-alias>
152 <activity-alias android:name="Activity5"
153 android:label="TestActivity5"
154 android:targetActivity="com.android.launcher3.testcomponent.BaseTestingActivity">
155 <intent-filter>
156 <action android:name="android.intent.action.MAIN"/>
157 <category android:name="android.intent.category.LAUNCHER"/>
158 </intent-filter>
159 </activity-alias>
160 <activity-alias android:name="Activity6"
161 android:label="TestActivity6"
162 android:targetActivity="com.android.launcher3.testcomponent.BaseTestingActivity">
163 <intent-filter>
164 <action android:name="android.intent.action.MAIN"/>
165 <category android:name="android.intent.category.LAUNCHER"/>
166 </intent-filter>
167 </activity-alias>
168 <activity-alias android:name="Activity7"
169 android:label="TestActivity7"
170 android:targetActivity="com.android.launcher3.testcomponent.BaseTestingActivity">
171 <intent-filter>
172 <action android:name="android.intent.action.MAIN"/>
173 <category android:name="android.intent.category.LAUNCHER"/>
174 </intent-filter>
175 </activity-alias>
176 <activity-alias android:name="Activity8"
177 android:label="TestActivity8"
178 android:targetActivity="com.android.launcher3.testcomponent.BaseTestingActivity">
179 <intent-filter>
180 <action android:name="android.intent.action.MAIN"/>
181 <category android:name="android.intent.category.LAUNCHER"/>
182 </intent-filter>
183 </activity-alias>
184 <activity-alias android:name="Activity9"
185 android:label="TestActivity9"
186 android:targetActivity="com.android.launcher3.testcomponent.BaseTestingActivity">
187 <intent-filter>
188 <action android:name="android.intent.action.MAIN"/>
189 <category android:name="android.intent.category.LAUNCHER"/>
190 </intent-filter>
191 </activity-alias>
192 <activity-alias android:name="Activity10"
193 android:label="TestActivity10"
194 android:targetActivity="com.android.launcher3.testcomponent.BaseTestingActivity">
195 <intent-filter>
196 <action android:name="android.intent.action.MAIN"/>
197 <category android:name="android.intent.category.LAUNCHER"/>
198 </intent-filter>
199 </activity-alias>
Vadim Trysheva8700f62018-08-30 16:01:47 -0700200 <activity-alias android:name="Activity11"
201 android:label="TestActivity11"
202 android:targetActivity="com.android.launcher3.testcomponent.BaseTestingActivity">
203 <intent-filter>
204 <action android:name="android.intent.action.MAIN"/>
205 <category android:name="android.intent.category.LAUNCHER"/>
206 </intent-filter>
207 </activity-alias>
Sunny Goyal658058b2017-01-21 01:33:02 -0800208 </application>
209</manifest>