blob: 0b74dc40965b1af01a2961f2bba1eaaad9a252af [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
Sunny Goyal8f90d5d2019-09-18 22:29:40 -070076 <service
77 android:name="com.android.launcher3.testcomponent.ListViewService"
78 android:permission="android.permission.BIND_REMOTEVIEWS" />
79
Sunny Goyal4ed58d62018-10-05 16:19:38 -070080 <provider
Sunny Goyal8f90d5d2019-09-18 22:29:40 -070081 android:name="com.android.launcher3.testcomponent.TestCommandProvider"
Sunny Goyal4ed58d62018-10-05 16:19:38 -070082 android:authorities="${packageName}.commands"
vadimtb96898a2019-04-05 18:35:29 -070083 android:exported="true"/>
Sunny Goyal4ed58d62018-10-05 16:19:38 -070084
85 <activity
86 android:name="com.android.launcher3.testcomponent.TestLauncherActivity"
Sunny Goyal4ed58d62018-10-05 16:19:38 -070087 android:clearTaskOnLaunch="true"
Sunny Goyal4ed58d62018-10-05 16:19:38 -070088 android:configChanges="keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenSize|screenLayout|smallestScreenSize"
vadimtb96898a2019-04-05 18:35:29 -070089 android:enabled="false"
90 android:label="Test launcher"
91 android:launchMode="singleTask"
Sunny Goyal4ed58d62018-10-05 16:19:38 -070092 android:process=":testLauncherProcess"
vadimtb96898a2019-04-05 18:35:29 -070093 android:resizeableActivity="true"
94 android:screenOrientation="unspecified"
95 android:stateNotNeeded="true"
96 android:taskAffinity=""
97 android:theme="@android:style/Theme.DeviceDefault.Light"
98 android:windowSoftInputMode="adjustPan">
Sunny Goyal4ed58d62018-10-05 16:19:38 -070099 <intent-filter>
vadimtb96898a2019-04-05 18:35:29 -0700100 <action android:name="android.intent.action.MAIN"/>
101 <category android:name="android.intent.category.HOME"/>
102 <category android:name="android.intent.category.DEFAULT"/>
Sunny Goyal4ed58d62018-10-05 16:19:38 -0700103 <category android:name="android.intent.category.MONKEY"/>
vadimtb96898a2019-04-05 18:35:29 -0700104 <category android:name="android.intent.category.LAUNCHER_APP"/>
Sunny Goyal4ed58d62018-10-05 16:19:38 -0700105 </intent-filter>
106 </activity>
vadimtfb0cb7a2019-04-04 17:35:57 -0700107 <activity
108 android:name="com.android.launcher3.testcomponent.BaseTestingActivity"
vadimtf1e0c902019-04-30 19:54:43 -0700109 android:label="LauncherTestApp"
110 android:taskAffinity="com.android.launcher3.testcomponent.Affinity1">
vadimtfb0cb7a2019-04-04 17:35:57 -0700111 <intent-filter>
112 <action android:name="android.intent.action.MAIN"/>
113 <category android:name="android.intent.category.LAUNCHER"/>
114 </intent-filter>
vadimtb96898a2019-04-05 18:35:29 -0700115 <intent-filter>
116 <action android:name="com.android.launcher3.intent.action.test_shortcut"/>
117 <category android:name="android.intent.category.DEFAULT"/>
118 </intent-filter>
119 <meta-data android:name="android.app.shortcuts"
120 android:resource="@xml/shortcuts"/>
vadimtfb0cb7a2019-04-04 17:35:57 -0700121 </activity>
vadimtdb4afbb2019-04-30 18:19:50 -0700122 <activity-alias android:name="Activity2"
123 android:label="TestActivity2"
124 android:targetActivity="com.android.launcher3.testcomponent.BaseTestingActivity">
125 <intent-filter>
126 <action android:name="android.intent.action.MAIN"/>
127 <category android:name="android.intent.category.LAUNCHER"/>
128 </intent-filter>
129 </activity-alias>
130 <activity-alias android:name="Activity3"
131 android:label="TestActivity3"
132 android:targetActivity="com.android.launcher3.testcomponent.BaseTestingActivity">
133 <intent-filter>
134 <action android:name="android.intent.action.MAIN"/>
135 <category android:name="android.intent.category.LAUNCHER"/>
136 </intent-filter>
137 </activity-alias>
138 <activity-alias android:name="Activity4"
139 android:label="TestActivity4"
140 android:targetActivity="com.android.launcher3.testcomponent.BaseTestingActivity">
141 <intent-filter>
142 <action android:name="android.intent.action.MAIN"/>
143 <category android:name="android.intent.category.LAUNCHER"/>
144 </intent-filter>
145 </activity-alias>
146 <activity-alias android:name="Activity5"
147 android:label="TestActivity5"
148 android:targetActivity="com.android.launcher3.testcomponent.BaseTestingActivity">
149 <intent-filter>
150 <action android:name="android.intent.action.MAIN"/>
151 <category android:name="android.intent.category.LAUNCHER"/>
152 </intent-filter>
153 </activity-alias>
154 <activity-alias android:name="Activity6"
155 android:label="TestActivity6"
156 android:targetActivity="com.android.launcher3.testcomponent.BaseTestingActivity">
157 <intent-filter>
158 <action android:name="android.intent.action.MAIN"/>
159 <category android:name="android.intent.category.LAUNCHER"/>
160 </intent-filter>
161 </activity-alias>
162 <activity-alias android:name="Activity7"
163 android:label="TestActivity7"
164 android:targetActivity="com.android.launcher3.testcomponent.BaseTestingActivity">
165 <intent-filter>
166 <action android:name="android.intent.action.MAIN"/>
167 <category android:name="android.intent.category.LAUNCHER"/>
168 </intent-filter>
169 </activity-alias>
170 <activity-alias android:name="Activity8"
171 android:label="TestActivity8"
172 android:targetActivity="com.android.launcher3.testcomponent.BaseTestingActivity">
173 <intent-filter>
174 <action android:name="android.intent.action.MAIN"/>
175 <category android:name="android.intent.category.LAUNCHER"/>
176 </intent-filter>
177 </activity-alias>
178 <activity-alias android:name="Activity9"
179 android:label="TestActivity9"
180 android:targetActivity="com.android.launcher3.testcomponent.BaseTestingActivity">
181 <intent-filter>
182 <action android:name="android.intent.action.MAIN"/>
183 <category android:name="android.intent.category.LAUNCHER"/>
184 </intent-filter>
185 </activity-alias>
186 <activity-alias android:name="Activity10"
187 android:label="TestActivity10"
188 android:targetActivity="com.android.launcher3.testcomponent.BaseTestingActivity">
189 <intent-filter>
190 <action android:name="android.intent.action.MAIN"/>
191 <category android:name="android.intent.category.LAUNCHER"/>
192 </intent-filter>
193 </activity-alias>
Vadim Trysheva8700f62018-08-30 16:01:47 -0700194 <activity-alias android:name="Activity11"
195 android:label="TestActivity11"
196 android:targetActivity="com.android.launcher3.testcomponent.BaseTestingActivity">
197 <intent-filter>
198 <action android:name="android.intent.action.MAIN"/>
199 <category android:name="android.intent.category.LAUNCHER"/>
200 </intent-filter>
201 </activity-alias>
Sunny Goyal658058b2017-01-21 01:33:02 -0800202 </application>
203</manifest>