blob: db3a992b9c7b5bd668f915c576728183b879d324 [file] [log] [blame]
Romain Guy0bbae082010-06-15 18:03:40 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2010 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 xmlns:android="http://schemas.android.com/apk/res/android"
Ashwini Orugantie178c24d2020-03-18 15:46:39 -070018 package="com.android.test.hwui">
Romain Guy0bbae082010-06-15 18:03:40 -070019
Ashwini Orugantie178c24d2020-03-18 15:46:39 -070020 <uses-permission android:name="android.permission.INTERNET"/>
21 <uses-permission android:name="android.permission.CAMERA"/>
22 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
Romain Guyaa6c24c2011-04-28 18:40:04 -070023
Ashwini Orugantie178c24d2020-03-18 15:46:39 -070024 <uses-feature android:name="android.hardware.camera"/>
25 <uses-feature android:name="android.hardware.camera.autofocus"/>
Romain Guyaa6c24c2011-04-28 18:40:04 -070026
Ashwini Orugantie178c24d2020-03-18 15:46:39 -070027 <uses-sdk android:minSdkVersion="21"/>
Chris Craikfca52b752015-04-28 11:45:59 -070028
Ashwini Orugantie178c24d2020-03-18 15:46:39 -070029 <application android:label="HwUi"
30 android:theme="@android:style/Theme.Material.Light">
Romain Guy0bbae082010-06-15 18:03:40 -070031
Ashwini Orugantie178c24d2020-03-18 15:46:39 -070032 <activity android:name="HwTests"
33 android:label="OpenGL Renderer Tests"
34 android:exported="true">
Romain Guy29ce8c92013-02-28 13:08:34 -080035 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -070036 <action android:name="android.intent.action.MAIN"/>
37 <category android:name="android.intent.category.DEFAULT"/>
38 <category android:name="android.intent.category.LAUNCHER"/>
Romain Guy29ce8c92013-02-28 13:08:34 -080039 </intent-filter>
40 </activity>
Romain Guy211370f2012-02-01 16:10:55 -080041
Ashwini Orugantie178c24d2020-03-18 15:46:39 -070042 <activity android:name="PathOpsActivity"
43 android:label="Path/Ops"
44 android:exported="true">
Romain Guy8018c8d2013-07-29 19:17:59 -070045 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -070046 <action android:name="android.intent.action.MAIN"/>
47 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy8018c8d2013-07-29 19:17:59 -070048 </intent-filter>
49 </activity>
50
Ashwini Orugantie178c24d2020-03-18 15:46:39 -070051 <activity android:name="AssetsAtlasActivity"
52 android:label="Atlas/Framework"
53 android:exported="true">
Romain Guy3b748a42013-04-17 18:54:38 -070054 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -070055 <action android:name="android.intent.action.MAIN"/>
56 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy3b748a42013-04-17 18:54:38 -070057 </intent-filter>
58 </activity>
59
Ashwini Orugantie178c24d2020-03-18 15:46:39 -070060 <activity android:name="ScaledTextActivity"
61 android:label="Text/Scaled"
62 android:exported="true">
Romain Guy5b4628a2013-01-07 18:11:52 -080063 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -070064 <action android:name="android.intent.action.MAIN"/>
65 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy5b4628a2013-01-07 18:11:52 -080066 </intent-filter>
67 </activity>
68
Ashwini Orugantie178c24d2020-03-18 15:46:39 -070069 <activity android:name="Rotate3dTextActivity"
70 android:label="Text/3D Rotation"
71 android:exported="true">
Romain Guya4adcf02013-02-28 12:15:35 -080072 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -070073 <action android:name="android.intent.action.MAIN"/>
74 <category android:name="com.android.test.hwui.TEST"/>
Romain Guya4adcf02013-02-28 12:15:35 -080075 </intent-filter>
76 </activity>
77
Ashwini Orugantie178c24d2020-03-18 15:46:39 -070078 <activity android:name="NoAATextActivity"
79 android:label="Text/Aliased"
80 android:exported="true">
Romain Guyb969a0d2013-02-05 14:38:40 -080081 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -070082 <action android:name="android.intent.action.MAIN"/>
83 <category android:name="com.android.test.hwui.TEST"/>
Romain Guyb969a0d2013-02-05 14:38:40 -080084 </intent-filter>
85 </activity>
86
Ashwini Orugantie178c24d2020-03-18 15:46:39 -070087 <activity android:name="ScaledPathsActivity"
88 android:label="Path/Scaled"
89 android:exported="true">
Romain Guy5b4628a2013-01-07 18:11:52 -080090 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -070091 <action android:name="android.intent.action.MAIN"/>
92 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy5b4628a2013-01-07 18:11:52 -080093 </intent-filter>
94 </activity>
95
Ashwini Orugantie178c24d2020-03-18 15:46:39 -070096 <activity android:name="Alpha8BitmapActivity"
97 android:label="Bitmaps/Alpha8"
98 android:exported="true">
Romain Guy886b2752013-01-04 12:26:18 -080099 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700100 <action android:name="android.intent.action.MAIN"/>
101 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy886b2752013-01-04 12:26:18 -0800102 </intent-filter>
103 </activity>
104
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700105 <activity android:name="MipMapActivity"
106 android:label="Bitmaps/MipMap"
107 android:exported="true">
Romain Guy713e1bb2012-10-16 18:44:09 -0700108 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700109 <action android:name="android.intent.action.MAIN"/>
110 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy713e1bb2012-10-16 18:44:09 -0700111 </intent-filter>
112 </activity>
113
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700114 <activity android:name="DrawIntoHwBitmapActivity"
115 android:label="Bitmaps/DrawIntoHwBitmap"
116 android:exported="true">
John Reck1fedd912017-05-23 14:45:22 -0700117 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700118 <action android:name="android.intent.action.MAIN"/>
119 <category android:name="com.android.test.hwui.TEST"/>
John Reck1fedd912017-05-23 14:45:22 -0700120 </intent-filter>
121 </activity>
122
Alec Mouridded51f2023-02-01 06:04:55 +0000123 <activity android:name="ColorBitmapActivity"
124 android:label="Bitmaps/BitmapColors"
125 android:exported="true">
126 <intent-filter>
127 <action android:name="android.intent.action.MAIN"/>
128 <category android:name="com.android.test.hwui.TEST"/>
129 </intent-filter>
130 </activity>
131
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700132 <activity android:name="PathOffsetActivity"
133 android:label="Path/Offset"
134 android:exported="true">
Romain Guy9fc4b352012-09-04 10:27:05 -0700135 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700136 <action android:name="android.intent.action.MAIN"/>
137 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy9fc4b352012-09-04 10:27:05 -0700138 </intent-filter>
139 </activity>
140
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700141 <activity android:name="MultiLayersActivity"
142 android:label="Layers/Multiple"
143 android:exported="true">
Romain Guy189ff172012-09-18 18:59:59 -0700144 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700145 <action android:name="android.intent.action.MAIN"/>
146 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy189ff172012-09-18 18:59:59 -0700147 </intent-filter>
148 </activity>
149
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700150 <activity android:name="TJunctionActivity"
151 android:label="Layers/T-Junction"
152 android:exported="true">
Romain Guye49d7ec2012-09-07 18:42:38 -0700153 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700154 <action android:name="android.intent.action.MAIN"/>
155 <category android:name="com.android.test.hwui.TEST"/>
Romain Guye49d7ec2012-09-07 18:42:38 -0700156 </intent-filter>
157 </activity>
158
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700159 <activity android:name="TextPathActivity"
160 android:label="Text/As Path"
161 android:exported="true">
Romain Guy320d46b2012-08-08 16:05:42 -0700162 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700163 <action android:name="android.intent.action.MAIN"/>
164 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy320d46b2012-08-08 16:05:42 -0700165 </intent-filter>
166 </activity>
167
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700168 <activity android:name="GradientStopsActivity"
169 android:label="Gradients/Multi-stops"
170 android:exported="true">
Romain Guy42e1e0d2012-07-30 14:47:51 -0700171 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700172 <action android:name="android.intent.action.MAIN"/>
173 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy42e1e0d2012-07-30 14:47:51 -0700174 </intent-filter>
175 </activity>
176
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700177 <activity android:name="PaintDrawFilterActivity"
178 android:label="Paint/Draw Filter"
179 android:exported="true">
Romain Guy5ff9df62012-01-23 17:09:05 -0800180 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700181 <action android:name="android.intent.action.MAIN"/>
182 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy5ff9df62012-01-23 17:09:05 -0800183 </intent-filter>
184 </activity>
Romain Guy967e2bf2012-02-07 17:04:34 -0800185
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700186 <activity android:name="BigGradientActivity"
187 android:label="Gradients/Large"
188 android:exported="true">
Romain Guy98ba8942012-07-20 16:50:03 -0700189 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700190 <action android:name="android.intent.action.MAIN"/>
191 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy98ba8942012-07-20 16:50:03 -0700192 </intent-filter>
193 </activity>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700194
195 <activity android:name="DatePickerActivity"
196 android:label="View/DatePicker"
197 android:exported="true">
Romain Guy29464452012-04-03 20:22:10 -0700198 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700199 <action android:name="android.intent.action.MAIN"/>
200 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy29464452012-04-03 20:22:10 -0700201 </intent-filter>
202 </activity>
203
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700204 <activity android:name="ClipRegionActivity"
205 android:label="Clip/Region 1"
206 android:exported="true">
Romain Guy967e2bf2012-02-07 17:04:34 -0800207 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700208 <action android:name="android.intent.action.MAIN"/>
209 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy967e2bf2012-02-07 17:04:34 -0800210 </intent-filter>
211 </activity>
Romain Guy8ce00302013-01-15 18:51:42 -0800212
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700213 <activity android:name="ClipRegion2Activity"
214 android:label="Clip/Region 2"
215 android:exported="true">
Romain Guy8ce00302013-01-15 18:51:42 -0800216 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700217 <action android:name="android.intent.action.MAIN"/>
218 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy8ce00302013-01-15 18:51:42 -0800219 </intent-filter>
220 </activity>
221
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700222 <activity android:name="ClipRegion3Activity"
223 android:label="Clip/Region 3"
224 android:exported="true">
Romain Guy3c099c42013-02-06 15:28:04 -0800225 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700226 <action android:name="android.intent.action.MAIN"/>
227 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy3c099c42013-02-06 15:28:04 -0800228 </intent-filter>
229 </activity>
230
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700231 <activity android:name="ClipOutlineActivity"
232 android:label="Clip/Outline"
233 android:exported="true">
Chris Craikdeeda3d2014-05-05 19:09:33 -0700234 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700235 <action android:name="android.intent.action.MAIN"/>
236 <category android:name="com.android.test.hwui.TEST"/>
Chris Craikdeeda3d2014-05-05 19:09:33 -0700237 </intent-filter>
238 </activity>
239
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700240 <activity android:name="DisplayListLayersActivity"
241 android:label="Layers/Display Lists"
242 android:exported="true">
Romain Guy2a9fa892011-09-28 16:50:02 -0700243 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700244 <action android:name="android.intent.action.MAIN"/>
245 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy2a9fa892011-09-28 16:50:02 -0700246 </intent-filter>
247 </activity>
Romain Guyf9d9c062012-01-19 16:53:41 -0800248
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700249 <activity android:name="MatrixActivity"
250 android:label="Misc/Matrix"
251 android:exported="true">
Romain Guyf9d9c062012-01-19 16:53:41 -0800252 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700253 <action android:name="android.intent.action.MAIN"/>
254 <category android:name="com.android.test.hwui.TEST"/>
Romain Guyf9d9c062012-01-19 16:53:41 -0800255 </intent-filter>
256 </activity>
John Reck030d6192014-05-07 15:45:47 -0700257
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700258 <activity android:name="LooperAcceleration"
259 android:label="Misc/LooperAcceleration"
260 android:exported="true">
John Reck030d6192014-05-07 15:45:47 -0700261 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700262 <action android:name="android.intent.action.MAIN"/>
263 <category android:name="com.android.test.hwui.TEST"/>
John Reck030d6192014-05-07 15:45:47 -0700264 </intent-filter>
265 </activity>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700266
267 <activity android:name="TextFadeActivity"
268 android:label="Text/Fade"
269 android:exported="true">
Romain Guyb5014982011-07-28 15:39:12 -0700270 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700271 <action android:name="android.intent.action.MAIN"/>
272 <category android:name="com.android.test.hwui.TEST"/>
Romain Guyb5014982011-07-28 15:39:12 -0700273 </intent-filter>
274 </activity>
275
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700276 <activity android:name="MaxBitmapSizeActivity"
277 android:label="Bitmaps/Max Size"
278 android:exported="true">
Romain Guyf61970fc2011-07-07 14:10:06 -0700279 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700280 <action android:name="android.intent.action.MAIN"/>
281 <category android:name="com.android.test.hwui.TEST"/>
Romain Guyf61970fc2011-07-07 14:10:06 -0700282 </intent-filter>
283 </activity>
284
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700285 <activity android:name="TimeDialogActivity"
286 android:label="View/TimeDialog"
287 android:exported="true">
Romain Guy595c18b2011-06-29 17:20:38 -0700288 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700289 <action android:name="android.intent.action.MAIN"/>
290 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy595c18b2011-06-29 17:20:38 -0700291 </intent-filter>
292 </activity>
John Reck3c0369b2017-11-13 16:47:35 -0800293
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700294 <activity android:name="ColoredShadowsActivity"
295 android:label="View/ColoredShadows"
296 android:theme="@style/ThemeColoredShadows"
297 android:exported="true">
John Reck3c0369b2017-11-13 16:47:35 -0800298 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700299 <action android:name="android.intent.action.MAIN"/>
300 <category android:name="com.android.test.hwui.TEST"/>
John Reck3c0369b2017-11-13 16:47:35 -0800301 </intent-filter>
302 </activity>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700303
304 <activity android:name="OpaqueActivity"
305 android:label="Window/Opaque"
306 android:exported="true">
Romain Guy02ccac62011-06-24 13:20:23 -0700307 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700308 <action android:name="android.intent.action.MAIN"/>
309 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy02ccac62011-06-24 13:20:23 -0700310 </intent-filter>
311 </activity>
312
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700313 <activity android:name="GetBitmapActivity"
314 android:label="TextureView/Get Bitmap"
315 android:exported="true">
Romain Guyd6b2a002011-06-17 17:45:59 -0700316 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700317 <action android:name="android.intent.action.MAIN"/>
318 <category android:name="com.android.test.hwui.TEST"/>
Romain Guyd6b2a002011-06-17 17:45:59 -0700319 </intent-filter>
320 </activity>
John Reck5cca8f22018-12-10 17:06:22 -0800321
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700322 <activity android:name="PictureCaptureDemo"
323 android:label="Debug/Picture Capture"
324 android:exported="true">
John Reck5cca8f22018-12-10 17:06:22 -0800325 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700326 <action android:name="android.intent.action.MAIN"/>
327 <category android:name="com.android.test.hwui.TEST"/>
John Reck5cca8f22018-12-10 17:06:22 -0800328 </intent-filter>
329 </activity>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700330
331 <activity android:name="SmallCircleActivity"
332 android:label="Draw/Small Circle"
333 android:exported="true">
Romain Guy98029c82011-06-17 15:47:07 -0700334 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700335 <action android:name="android.intent.action.MAIN"/>
336 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy98029c82011-06-17 15:47:07 -0700337 </intent-filter>
338 </activity>
339
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700340 <activity android:name="ClearActivity"
341 android:label="Window/Clear"
342 android:exported="true">
Romain Guyf504a2f2011-05-26 16:40:55 -0700343 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700344 <action android:name="android.intent.action.MAIN"/>
345 <category android:name="com.android.test.hwui.TEST"/>
Romain Guyf504a2f2011-05-26 16:40:55 -0700346 </intent-filter>
347 </activity>
348
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700349 <activity android:name="TextureViewActivity"
350 android:label="TextureView/Camera"
351 android:exported="true">
Romain Guyaa6c24c2011-04-28 18:40:04 -0700352 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700353 <action android:name="android.intent.action.MAIN"/>
354 <category android:name="com.android.test.hwui.TEST"/>
Romain Guyaa6c24c2011-04-28 18:40:04 -0700355 </intent-filter>
356 </activity>
Romain Guy8f0095c2011-05-02 17:24:22 -0700357
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700358 <activity android:name="GlyphCacheActivity"
359 android:label="Text/Glyph Cache"
360 android:exported="true">
Chet Haasee816bae2012-08-09 13:39:02 -0700361 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700362 <action android:name="android.intent.action.MAIN"/>
363 <category android:name="com.android.test.hwui.TEST"/>
Chet Haasee816bae2012-08-09 13:39:02 -0700364 </intent-filter>
365 </activity>
366
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700367 <activity android:name="CanvasTextureViewActivity"
368 android:label="TextureView/Canvas"
369 android:exported="true">
Romain Guy6be3d552011-07-14 18:08:37 -0700370 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700371 <action android:name="android.intent.action.MAIN"/>
372 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy6be3d552011-07-14 18:08:37 -0700373 </intent-filter>
374 </activity>
ztenghuib4dabad2014-06-30 13:04:47 -0700375
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700376 <activity android:name="HardwareCanvasTextureViewActivity"
377 android:label="TextureView/HardwareCanvas"
378 android:exported="true">
John Reckbb2d0cc2014-10-21 10:09:36 -0700379 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700380 <action android:name="android.intent.action.MAIN"/>
381 <category android:name="com.android.test.hwui.TEST"/>
John Reckbb2d0cc2014-10-21 10:09:36 -0700382 </intent-filter>
383 </activity>
384
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700385 <activity android:name="SingleFrameTextureViewTestActivity"
386 android:label="TextureView/SingleFrameTextureViewTest"
387 android:exported="true">
John Reck417ed6d2016-03-22 16:01:08 -0700388 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700389 <action android:name="android.intent.action.MAIN"/>
390 <category android:name="com.android.test.hwui.TEST"/>
John Reck417ed6d2016-03-22 16:01:08 -0700391 </intent-filter>
392 </activity>
393
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700394 <activity android:name="HardwareCanvasSurfaceViewActivity"
395 android:label="SurfaceView/HardwareCanvas"
396 android:exported="true">
John Reckbb2d0cc2014-10-21 10:09:36 -0700397 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700398 <action android:name="android.intent.action.MAIN"/>
399 <category android:name="com.android.test.hwui.TEST"/>
John Reckbb2d0cc2014-10-21 10:09:36 -0700400 </intent-filter>
401 </activity>
402
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700403 <activity android:name="MovingSurfaceViewActivity"
404 android:label="SurfaceView/Animated Movement"
405 android:exported="true">
John Reckf6481082016-02-02 15:18:23 -0800406 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700407 <action android:name="android.intent.action.MAIN"/>
408 <category android:name="com.android.test.hwui.TEST"/>
John Reckf6481082016-02-02 15:18:23 -0800409 </intent-filter>
410 </activity>
411
John Reck5d53a752021-02-08 19:22:59 -0500412 <activity android:name="StretchySurfaceViewActivity"
413 android:label="SurfaceView/Stretchy Movement"
414 android:exported="true">
415 <intent-filter>
416 <action android:name="android.intent.action.MAIN"/>
417 <category android:name="com.android.test.hwui.TEST"/>
418 </intent-filter>
419 </activity>
420
Nader Jawad197743f2021-04-19 19:45:13 -0700421 <activity android:name="ScrollingStretchSurfaceViewActivity"
422 android:label="SurfaceView/Scrolling Stretched SurfaceView"
423 android:exported="true">
424 <intent-filter>
425 <action android:name="android.intent.action.MAIN"/>
426 <category android:name="com.android.test.hwui.TEST"/>
427 </intent-filter>
428 </activity>
429
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700430 <activity android:name="GetBitmapSurfaceViewActivity"
431 android:label="SurfaceView/GetBitmap with Camera source"
432 android:exported="true">
John Reck10dd0582016-03-31 16:36:16 -0700433 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700434 <action android:name="android.intent.action.MAIN"/>
435 <category android:name="com.android.test.hwui.TEST"/>
John Reck10dd0582016-03-31 16:36:16 -0700436 </intent-filter>
437 </activity>
438
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700439 <activity android:name="VideoViewCaptureActivity"
440 android:label="SurfaceView/GetBitmap with Video source"
441 android:exported="true">
John Reckf3a51d62016-04-27 15:23:51 -0700442 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700443 <action android:name="android.intent.action.MAIN"/>
444 <category android:name="com.android.test.hwui.TEST"/>
John Reckf3a51d62016-04-27 15:23:51 -0700445 </intent-filter>
446 </activity>
447
Alec Mouri655a5e42022-09-12 17:49:17 +0000448 <activity android:name="SurfaceViewAlphaActivity"
449 android:label="SurfaceView/SurfaceView with Alpha"
450 android:exported="true">
451 <intent-filter>
452 <action android:name="android.intent.action.MAIN"/>
453 <category android:name="com.android.test.hwui.TEST"/>
454 </intent-filter>
455 </activity>
456
Angel Aguayo8baf6fa2021-10-01 00:39:49 +0000457 <activity android:name=".PenStylusActivity"
Nader Jawad454bbcd2021-11-05 12:06:08 -0700458 android:label="Pen/Draw"
Angel Aguayo8baf6fa2021-10-01 00:39:49 +0000459 android:exported="true">
460 <intent-filter>
461 <action android:name="android.intent.action.MAIN"/>
462 <category android:name="com.android.test.hwui.TEST"/>
463 </intent-filter>
464 </activity>
465
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700466 <activity android:name="GLTextureViewActivity"
467 android:label="TextureView/OpenGL"
468 android:exported="true">
Romain Guy8f0095c2011-05-02 17:24:22 -0700469 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700470 <action android:name="android.intent.action.MAIN"/>
471 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy8f0095c2011-05-02 17:24:22 -0700472 </intent-filter>
473 </activity>
ztenghuib4dabad2014-06-30 13:04:47 -0700474
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700475 <activity android:name="BitmapMeshActivity"
476 android:label="Bitmaps/Mesh"
477 android:exported="true">
Romain Guy5a7b4662011-01-20 19:09:30 -0800478 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700479 <action android:name="android.intent.action.MAIN"/>
480 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy5a7b4662011-01-20 19:09:30 -0800481 </intent-filter>
482 </activity>
Romain Guyb18d2d02011-02-10 15:52:54 -0800483
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700484 <activity android:name="BitmapMutateActivity"
485 android:label="Bitmaps/Mutate"
486 android:exported="true">
Romain Guy1a81aea2011-03-21 15:24:51 -0700487 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700488 <action android:name="android.intent.action.MAIN"/>
489 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy1a81aea2011-03-21 15:24:51 -0700490 </intent-filter>
491 </activity>
492
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700493 <activity android:name="BitmapMeshLayerActivity"
494 android:label="Bitmaps/Mesh in Layer"
495 android:exported="true">
Romain Guyb18d2d02011-02-10 15:52:54 -0800496 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700497 <action android:name="android.intent.action.MAIN"/>
498 <category android:name="com.android.test.hwui.TEST"/>
Romain Guyb18d2d02011-02-10 15:52:54 -0800499 </intent-filter>
500 </activity>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700501
502 <activity android:name="MarqueeActivity"
503 android:label="Text/Marquee"
504 android:exported="true">
Romain Guyf28daff2011-02-04 00:59:34 -0800505 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700506 <action android:name="android.intent.action.MAIN"/>
507 <category android:name="com.android.test.hwui.TEST"/>
Romain Guyf28daff2011-02-04 00:59:34 -0800508 </intent-filter>
509 </activity>
Romain Guy5a7b4662011-01-20 19:09:30 -0800510
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700511 <activity android:name="ShapesActivity"
512 android:label="Path/Shapes"
513 android:exported="true">
Romain Guy01d58e42011-01-19 21:54:02 -0800514 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700515 <action android:name="android.intent.action.MAIN"/>
516 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy01d58e42011-01-19 21:54:02 -0800517 </intent-filter>
518 </activity>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700519
520 <activity android:name="ColoredRectsActivity"
521 android:label="Draw/Rects"
522 android:exported="true">
Chet Haase858aa932011-05-12 09:06:00 -0700523 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700524 <action android:name="android.intent.action.MAIN"/>
525 <category android:name="com.android.test.hwui.TEST"/>
Chet Haase858aa932011-05-12 09:06:00 -0700526 </intent-filter>
527 </activity>
528
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700529 <activity android:name="SimplePatchActivity"
530 android:label="Draw/9-Patch"
531 android:theme="@android:style/Theme.Translucent.NoTitleBar"
532 android:exported="true">
Romain Guyfb13abd2011-01-16 15:16:38 -0800533 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700534 <action android:name="android.intent.action.MAIN"/>
535 <category android:name="com.android.test.hwui.TEST"/>
Romain Guyfb13abd2011-01-16 15:16:38 -0800536 </intent-filter>
537 </activity>
538
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700539 <activity android:name="ViewLayersActivity"
540 android:label="Layers/Views 1"
541 android:exported="true">
Romain Guy171c5922011-01-06 10:04:23 -0800542 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700543 <action android:name="android.intent.action.MAIN"/>
544 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy171c5922011-01-06 10:04:23 -0800545 </intent-filter>
546 </activity>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700547
548 <activity android:name="ViewLayersActivity2"
549 android:label="Layers/Views 2"
550 android:exported="true">
Romain Guy6c319ca2011-01-11 14:29:25 -0800551 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700552 <action android:name="android.intent.action.MAIN"/>
553 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy6c319ca2011-01-11 14:29:25 -0800554 </intent-filter>
555 </activity>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700556
557 <activity android:name="ViewLayersActivity3"
558 android:label="Layers/Views 3"
559 android:exported="true">
Romain Guy42f3a4b2011-01-19 13:42:26 -0800560 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700561 <action android:name="android.intent.action.MAIN"/>
562 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy42f3a4b2011-01-19 13:42:26 -0800563 </intent-filter>
564 </activity>
Romain Guy54229ee2011-02-01 13:05:16 -0800565
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700566 <activity android:name="ViewLayersActivity4"
567 android:label="Layers/Views 4"
568 android:exported="true">
Romain Guy54229ee2011-02-01 13:05:16 -0800569 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700570 <action android:name="android.intent.action.MAIN"/>
571 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy54229ee2011-02-01 13:05:16 -0800572 </intent-filter>
573 </activity>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700574
575 <activity android:name="ViewLayersActivity5"
576 android:label="Layers/Views 5"
577 android:exported="true">
Romain Guy849d0a32011-02-01 17:20:48 -0800578 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700579 <action android:name="android.intent.action.MAIN"/>
580 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy849d0a32011-02-01 17:20:48 -0800581 </intent-filter>
582 </activity>
Romain Guy09b7c912011-02-02 20:28:09 -0800583
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700584 <activity android:name="AlphaLayersActivity"
585 android:label="Layers/Alpha"
586 android:exported="true">
Romain Guyd55a8612010-06-28 17:42:46 -0700587 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700588 <action android:name="android.intent.action.MAIN"/>
589 <category android:name="com.android.test.hwui.TEST"/>
Romain Guyd55a8612010-06-28 17:42:46 -0700590 </intent-filter>
591 </activity>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700592
593 <activity android:name="AdvancedGradientsActivity"
594 android:label="Gradients/Advanced"
595 android:exported="true">
Romain Guyee916f12010-09-20 17:53:08 -0700596 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700597 <action android:name="android.intent.action.MAIN"/>
598 <category android:name="com.android.test.hwui.TEST"/>
Romain Guyee916f12010-09-20 17:53:08 -0700599 </intent-filter>
600 </activity>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700601
602 <activity android:name="Bitmaps3dActivity"
603 android:label="Bitmaps/3D Rotation"
604 android:exported="true">
Romain Guye5ebcb02010-10-15 13:57:28 -0700605 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700606 <action android:name="android.intent.action.MAIN"/>
607 <category android:name="com.android.test.hwui.TEST"/>
Romain Guye5ebcb02010-10-15 13:57:28 -0700608 </intent-filter>
609 </activity>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700610
611 <activity android:name="LabelsActivity"
612 android:label="View/TextView"
613 android:exported="true">
Romain Guy7975fb62010-10-01 16:36:14 -0700614 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700615 <action android:name="android.intent.action.MAIN"/>
616 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy7975fb62010-10-01 16:36:14 -0700617 </intent-filter>
618 </activity>
619
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700620 <activity android:name="ViewFlipperActivity"
621 android:label="View/ViewFlipper"
622 android:theme="@android:style/Theme.Translucent.NoTitleBar"
623 android:exported="true">
Romain Guye5ebcb02010-10-15 13:57:28 -0700624 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700625 <action android:name="android.intent.action.MAIN"/>
626 <category android:name="com.android.test.hwui.TEST"/>
Romain Guye5ebcb02010-10-15 13:57:28 -0700627 </intent-filter>
628 </activity>
629
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700630 <activity android:name="ResizeActivity"
631 android:label="Window/Resize"
632 android:windowSoftInputMode="adjustResize"
633 android:exported="true">
Romain Guy53389bd2010-09-07 17:16:32 -0700634 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700635 <action android:name="android.intent.action.MAIN"/>
636 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy53389bd2010-09-07 17:16:32 -0700637 </intent-filter>
638 </activity>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700639
640 <activity android:name="TextGammaActivity"
641 android:label="Text/Gamma"
642 android:theme="@android:style/Theme.Translucent.NoTitleBar"
643 android:exported="true">
Romain Guy4299c0f2010-08-27 16:56:50 -0700644 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700645 <action android:name="android.intent.action.MAIN"/>
646 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy4299c0f2010-08-27 16:56:50 -0700647 </intent-filter>
648 </activity>
649
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700650 <activity android:name="TextGammaActivity$SubGammaActivity"
651 android:label="Text/Sub Gamma"
652 android:theme="@android:style/Theme.Translucent.NoTitleBar"
653 android:hardwareAccelerated="false"
654 android:exported="true">
Romain Guy4299c0f2010-08-27 16:56:50 -0700655 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700656 <action android:name="android.intent.action.MAIN"/>
Romain Guy4299c0f2010-08-27 16:56:50 -0700657 </intent-filter>
658 </activity>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700659
660 <activity android:name="LayersActivity"
661 android:label="Layers/Canvas Layers"
662 android:theme="@android:style/Theme.Translucent.NoTitleBar"
663 android:exported="true">
Romain Guy0bbae082010-06-15 18:03:40 -0700664 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700665 <action android:name="android.intent.action.MAIN"/>
666 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy0bbae082010-06-15 18:03:40 -0700667 </intent-filter>
668 </activity>
669
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700670 <activity android:name="NewLayersActivity"
671 android:label="Layers/Overlapping Layers"
672 android:exported="true">
Romain Guyf607bdc2010-09-10 19:20:06 -0700673 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700674 <action android:name="android.intent.action.MAIN"/>
675 <category android:name="com.android.test.hwui.TEST"/>
Romain Guyf607bdc2010-09-10 19:20:06 -0700676 </intent-filter>
677 </activity>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700678
679 <activity android:name="XfermodeActivity"
680 android:label="Draw/Xfermodes"
681 android:theme="@android:style/Theme.Translucent.NoTitleBar"
682 android:exported="true">
Romain Guy026c5e162010-06-28 17:12:22 -0700683 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700684 <action android:name="android.intent.action.MAIN"/>
685 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy026c5e162010-06-28 17:12:22 -0700686 </intent-filter>
687 </activity>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700688
689 <activity android:name="BitmapsActivity"
690 android:label="Bitmaps/Draw Bitmaps"
691 android:theme="@android:style/Theme.Translucent.NoTitleBar"
692 android:exported="true">
Romain Guyce0537b2010-06-29 21:05:21 -0700693 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700694 <action android:name="android.intent.action.MAIN"/>
695 <category android:name="com.android.test.hwui.TEST"/>
Romain Guyce0537b2010-06-29 21:05:21 -0700696 </intent-filter>
697 </activity>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700698
699 <activity android:name="BitmapsSkewActivity"
700 android:label="Bitmaps/Skew"
701 android:exported="true">
Romain Guy807daf72011-01-18 11:19:19 -0800702 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700703 <action android:name="android.intent.action.MAIN"/>
704 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy807daf72011-01-18 11:19:19 -0800705 </intent-filter>
706 </activity>
Romain Guye9e7fd02010-08-19 14:45:42 -0700707
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700708 <activity android:name="BitmapsAlphaActivity"
709 android:label="Bitmaps/Alpha"
710 android:theme="@android:style/Theme.Translucent.NoTitleBar"
711 android:exported="true">
Romain Guye9e7fd02010-08-19 14:45:42 -0700712 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700713 <action android:name="android.intent.action.MAIN"/>
714 <category android:name="com.android.test.hwui.TEST"/>
Romain Guye9e7fd02010-08-19 14:45:42 -0700715 </intent-filter>
716 </activity>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700717
718 <activity android:name="BitmapsRectActivity"
719 android:label="Bitmaps/Rect"
720 android:theme="@android:style/Theme.Translucent.NoTitleBar"
721 android:exported="true">
Romain Guy8ba548f2010-06-30 19:21:21 -0700722 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700723 <action android:name="android.intent.action.MAIN"/>
724 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy8ba548f2010-06-30 19:21:21 -0700725 </intent-filter>
726 </activity>
Romain Guy8411f332010-09-13 17:27:57 -0700727
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700728 <activity android:name="ThinPatchesActivity"
729 android:label="Draw/9-Patch Thin Drawable"
730 android:theme="@android:style/Theme.Translucent.NoTitleBar"
731 android:exported="true">
Romain Guy8411f332010-09-13 17:27:57 -0700732 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700733 <action android:name="android.intent.action.MAIN"/>
734 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy8411f332010-09-13 17:27:57 -0700735 </intent-filter>
736 </activity>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700737
738 <activity android:name="NinePatchesActivity"
739 android:label="Draw/9-Patch Drawable"
740 android:exported="true">
Romain Guyf7f93552010-07-08 19:17:03 -0700741 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700742 <action android:name="android.intent.action.MAIN"/>
743 <category android:name="com.android.test.hwui.TEST"/>
Romain Guyf7f93552010-07-08 19:17:03 -0700744 </intent-filter>
745 </activity>
Romain Guy5fccb702011-07-11 18:23:09 -0700746
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700747 <activity android:name="MoreNinePatchesActivity"
748 android:label="Draw/9-Patch Vertical Drawable"
749 android:exported="true">
Romain Guy5fccb702011-07-11 18:23:09 -0700750 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700751 <action android:name="android.intent.action.MAIN"/>
752 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy5fccb702011-07-11 18:23:09 -0700753 </intent-filter>
754 </activity>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700755
756 <activity android:name="QuickRejectActivity"
757 android:label="Clip/QuickReject"
758 android:exported="true">
Romain Guy6926c722010-07-12 20:20:03 -0700759 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700760 <action android:name="android.intent.action.MAIN"/>
761 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy6926c722010-07-12 20:20:03 -0700762 </intent-filter>
763 </activity>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700764
765 <activity android:name="RotationActivity"
766 android:label="View/Rotation"
767 android:exported="true">
Romain Guy3d58c032010-07-14 16:34:53 -0700768 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700769 <action android:name="android.intent.action.MAIN"/>
770 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy3d58c032010-07-14 16:34:53 -0700771 </intent-filter>
772 </activity>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700773
774 <activity android:name="GradientsActivity"
775 android:label="Gradients/Gradients"
776 android:exported="true">
Romain Guy0bb56672010-10-01 00:25:02 -0700777 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700778 <action android:name="android.intent.action.MAIN"/>
779 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy0bb56672010-10-01 00:25:02 -0700780 </intent-filter>
781 </activity>
Romain Guyd27977d2010-07-14 19:18:51 -0700782
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700783 <activity android:name="ShadersActivity"
784 android:label="Shaders/Shaders"
785 android:exported="true">
Romain Guyd27977d2010-07-14 19:18:51 -0700786 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700787 <action android:name="android.intent.action.MAIN"/>
788 <category android:name="com.android.test.hwui.TEST"/>
Romain Guyd27977d2010-07-14 19:18:51 -0700789 </intent-filter>
790 </activity>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700791
Dongya Jiangfdcf72c2022-02-28 21:35:57 +0800792 <activity android:name="BackdropBlurActivity"
793 android:label="RenderEffect/BackdropBlur"
794 android:exported="true">
795 <intent-filter>
796 <action android:name="android.intent.action.MAIN"/>
797 <category android:name="com.android.test.hwui.TEST"/>
798 </intent-filter>
799 </activity>
800
Nader Jawad322cb9c2020-08-17 17:15:54 -0700801 <activity android:name="BlurActivity"
Nader Jawad390d6e82020-09-24 21:35:03 -0700802 android:label="RenderEffect/Blur"
Nader Jawad322cb9c2020-08-17 17:15:54 -0700803 android:exported="true">
804 <intent-filter>
805 <action android:name="android.intent.action.MAIN"/>
806 <category android:name="com.android.test.hwui.TEST"/>
807 </intent-filter>
808 </activity>
809
Nader Jawad011aac82021-01-25 18:02:07 -0800810 <activity android:name="RenderEffectShaderActivity"
811 android:label="RenderEffect/Shader"
812 android:exported="true">
813 <intent-filter>
814 <action android:name="android.intent.action.MAIN"/>
815 <category android:name="com.android.test.hwui.TEST"/>
816 </intent-filter>
817 </activity>
818
Derek Sollenberger56c07982021-11-05 19:25:05 +0000819 <activity android:name="RenderEffectViewActivity"
820 android:label="RenderEffect/View"
821 android:exported="true">
822 <intent-filter>
823 <action android:name="android.intent.action.MAIN"/>
824 <category android:name="com.android.test.hwui.TEST"/>
825 </intent-filter>
826 </activity>
827
Nader Jawad6701a602021-02-23 18:14:22 -0800828 <activity android:name="StretchShaderActivity"
829 android:label="RenderEffect/Stretch"
830 android:exported="true">
831 <intent-filter>
832 <action android:name="android.intent.action.MAIN"/>
833 <category android:name="com.android.test.hwui.TEST"/>
834 </intent-filter>
835 </activity>
836
837 <activity android:name="EdgeEffectStretchActivity"
838 android:label="RenderEffect/EdgeEffect stretch"
839 android:exported="true">
840 <intent-filter>
841 <action android:name="android.intent.action.MAIN"/>
842 <category android:name="com.android.test.hwui.TEST"/>
843 </intent-filter>
844 </activity>
845
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700846 <activity android:name="TextActivity"
847 android:label="Text/Simple Text"
848 android:theme="@android:style/Theme.NoTitleBar"
849 android:exported="true">
Romain Guy694b5192010-07-21 21:33:20 -0700850 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700851 <action android:name="android.intent.action.MAIN"/>
852 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy694b5192010-07-21 21:33:20 -0700853 </intent-filter>
854 </activity>
Romain Guy09147fb2010-07-22 13:08:20 -0700855
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700856 <activity android:name="PosTextActivity"
857 android:label="Text/Pos Text"
858 android:theme="@android:style/Theme.NoTitleBar"
859 android:exported="true">
Romain Guy62b6eaa2012-01-17 14:52:13 -0800860 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700861 <action android:name="android.intent.action.MAIN"/>
862 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy62b6eaa2012-01-17 14:52:13 -0800863 </intent-filter>
864 </activity>
865
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700866 <activity android:name="ListActivity"
867 android:label="View/List"
868 android:exported="true">
Romain Guy09147fb2010-07-22 13:08:20 -0700869 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700870 <action android:name="android.intent.action.MAIN"/>
871 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy09147fb2010-07-22 13:08:20 -0700872 </intent-filter>
873 </activity>
Romain Guyf607bdc2010-09-10 19:20:06 -0700874
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700875 <activity android:name="TransparentListActivity"
876 android:label="View/Transparent List"
877 android:exported="true">
Romain Guyf607bdc2010-09-10 19:20:06 -0700878 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700879 <action android:name="android.intent.action.MAIN"/>
880 <category android:name="com.android.test.hwui.TEST"/>
Romain Guyf607bdc2010-09-10 19:20:06 -0700881 </intent-filter>
882 </activity>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700883
884 <activity android:name="MoreShadersActivity"
885 android:label="Shaders/Compose Shaders"
886 android:exported="true">
Romain Guyb82da652010-07-30 11:36:12 -0700887 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700888 <action android:name="android.intent.action.MAIN"/>
889 <category android:name="com.android.test.hwui.TEST"/>
Romain Guyb82da652010-07-30 11:36:12 -0700890 </intent-filter>
891 </activity>
Romain Guydb1938e2010-08-02 18:50:22 -0700892
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700893 <activity android:name="ColorFiltersActivity"
894 android:label="ColorFilters/Filters"
895 android:exported="true">
Romain Guydb1938e2010-08-02 18:50:22 -0700896 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700897 <action android:name="android.intent.action.MAIN"/>
898 <category android:name="com.android.test.hwui.TEST"/>
Romain Guydb1938e2010-08-02 18:50:22 -0700899 </intent-filter>
900 </activity>
Romain Guy529b60a2010-08-03 18:05:47 -0700901
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700902 <activity android:name="ColorFiltersMutateActivity"
903 android:label="ColorFilters/Mutate Filters"
904 android:exported="true">
Romain Guy13656742013-08-19 17:42:51 -0700905 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700906 <action android:name="android.intent.action.MAIN"/>
907 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy13656742013-08-19 17:42:51 -0700908 </intent-filter>
909 </activity>
910
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700911 <activity android:name="LinesActivity"
912 android:label="Draw/Lines"
913 android:exported="true">
Romain Guy529b60a2010-08-03 18:05:47 -0700914 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700915 <action android:name="android.intent.action.MAIN"/>
916 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy529b60a2010-08-03 18:05:47 -0700917 </intent-filter>
918 </activity>
Romain Guy7fbcc042010-08-04 15:40:07 -0700919
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700920 <activity android:name="Lines2Activity"
921 android:label="Draw/Lines 2"
922 android:exported="true">
Chet Haase5b0200b2011-04-13 17:58:08 -0700923 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700924 <action android:name="android.intent.action.MAIN"/>
925 <category android:name="com.android.test.hwui.TEST"/>
Chet Haase5b0200b2011-04-13 17:58:08 -0700926 </intent-filter>
927 </activity>
928
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700929 <activity android:name="PathsActivity"
930 android:label="Path/Paths"
931 android:exported="true">
Romain Guy7fbcc042010-08-04 15:40:07 -0700932 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700933 <action android:name="android.intent.action.MAIN"/>
934 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy7fbcc042010-08-04 15:40:07 -0700935 </intent-filter>
936 </activity>
Romain Guyba7186e2010-08-05 19:08:32 -0700937
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700938 <activity android:name="TextOnPathActivity"
939 android:label="Text/Text on Path"
940 android:exported="true">
Romain Guy325740f2012-02-24 16:48:34 -0800941 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700942 <action android:name="android.intent.action.MAIN"/>
943 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy325740f2012-02-24 16:48:34 -0800944 </intent-filter>
945 </activity>
946
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700947 <activity android:name="PathsCacheActivity"
948 android:label="Path/Cache"
949 android:exported="true">
Romain Guy96ebc6b2012-02-21 18:32:32 -0800950 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700951 <action android:name="android.intent.action.MAIN"/>`
952 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy96ebc6b2012-02-21 18:32:32 -0800953 </intent-filter>
954 </activity>
955
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700956 <activity android:name="PointsActivity"
957 android:label="Draw/Points"
958 android:exported="true">
Chet Haase8a5cc922011-04-26 07:28:09 -0700959 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700960 <action android:name="android.intent.action.MAIN"/>
961 <category android:name="com.android.test.hwui.TEST"/>
Chet Haase8a5cc922011-04-26 07:28:09 -0700962 </intent-filter>
963 </activity>
964
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700965 <activity android:name="Transform3dActivity"
966 android:label="Draw/3D Transform"
967 android:exported="true">
Romain Guyba7186e2010-08-05 19:08:32 -0700968 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700969 <action android:name="android.intent.action.MAIN"/>
970 <category android:name="com.android.test.hwui.TEST"/>
Romain Guyba7186e2010-08-05 19:08:32 -0700971 </intent-filter>
972 </activity>
973
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700974 <activity android:name="Animated3dActivity"
975 android:label="Draw/Animated 3D Transform"
976 android:exported="true">
Romain Guy47b8ade2011-02-23 19:46:33 -0800977 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700978 <action android:name="android.intent.action.MAIN"/>
979 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy47b8ade2011-02-23 19:46:33 -0800980 </intent-filter>
981 </activity>
982
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700983 <activity android:name="SimplePathsActivity"
984 android:label="Path/Simple Paths"
985 android:exported="true">
Romain Guy61c8c9c2010-08-09 20:48:09 -0700986 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700987 <action android:name="android.intent.action.MAIN"/>
988 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy61c8c9c2010-08-09 20:48:09 -0700989 </intent-filter>
990 </activity>
991
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700992 <activity android:name="AdvancedBlendActivity"
993 android:label="Draw/Advanced Blend"
994 android:exported="true">
Romain Guy48daa542010-08-10 19:21:34 -0700995 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -0700996 <action android:name="android.intent.action.MAIN"/>
997 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy48daa542010-08-10 19:21:34 -0700998 </intent-filter>
999 </activity>
1000
Ashwini Orugantie178c24d2020-03-18 15:46:39 -07001001 <activity android:name="FramebufferBlendActivity"
1002 android:label="Draw/Framebuffer Blend"
1003 android:exported="true">
Romain Guya5aed0d2010-09-09 14:42:43 -07001004 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -07001005 <action android:name="android.intent.action.MAIN"/>
1006 <category android:name="com.android.test.hwui.TEST"/>
Romain Guya5aed0d2010-09-09 14:42:43 -07001007 </intent-filter>
1008 </activity>
Romain Guya5aed0d2010-09-09 14:42:43 -07001009
Ashwini Orugantie178c24d2020-03-18 15:46:39 -07001010 <activity android:name="StackActivity"
1011 android:label="View/Stacks"
1012 android:exported="true">
Romain Guy0a417492010-08-16 20:26:20 -07001013 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -07001014 <action android:name="android.intent.action.MAIN"/>
1015 <category android:name="com.android.test.hwui.TEST"/>
Romain Guy0a417492010-08-16 20:26:20 -07001016 </intent-filter>
1017 </activity>
1018
Ashwini Orugantie178c24d2020-03-18 15:46:39 -07001019 <activity android:name="PathDestructionActivity"
1020 android:label="Path/Path Destruction"
1021 android:exported="true">
Chet Haased34dd712012-05-02 18:50:34 -07001022 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -07001023 <action android:name="android.intent.action.MAIN"/>
1024 <category android:name="com.android.test.hwui.TEST"/>
Chet Haased34dd712012-05-02 18:50:34 -07001025 </intent-filter>
1026 </activity>
1027
Ashwini Orugantie178c24d2020-03-18 15:46:39 -07001028 <activity android:name="TransformsAndAnimationsActivity"
1029 android:label="Draw/Transforms and Animations"
1030 android:exported="true">
Chet Haase9420abd2012-03-29 16:28:32 -07001031 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -07001032 <action android:name="android.intent.action.MAIN"/>
1033 <category android:name="com.android.test.hwui.TEST"/>
Chet Haase9420abd2012-03-29 16:28:32 -07001034 </intent-filter>
1035 </activity>
1036
Ashwini Orugantie178c24d2020-03-18 15:46:39 -07001037 <activity android:name="ViewPropertyAlphaActivity"
1038 android:label="View/Alpha Property"
1039 android:exported="true">
Chet Haasedb8c9a62012-03-21 18:54:18 -07001040 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -07001041 <action android:name="android.intent.action.MAIN"/>
1042 <category android:name="com.android.test.hwui.TEST"/>
Chet Haasedb8c9a62012-03-21 18:54:18 -07001043 </intent-filter>
1044 </activity>
1045
Ashwini Orugantie178c24d2020-03-18 15:46:39 -07001046 <activity android:name="ViewLayerInvalidationActivity"
1047 android:label="Layers/Invalidation"
1048 android:exported="true">
Chet Haase810a8672012-05-01 15:57:24 -07001049 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -07001050 <action android:name="android.intent.action.MAIN"/>
1051 <category android:name="com.android.test.hwui.TEST"/>
Chet Haase810a8672012-05-01 15:57:24 -07001052 </intent-filter>
1053 </activity>
1054
Ashwini Orugantie178c24d2020-03-18 15:46:39 -07001055 <activity android:name="ProjectionActivity"
1056 android:label="Reordering/Projection"
1057 android:exported="true">
Chris Craikf533e942014-01-14 22:35:37 -08001058 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -07001059 <action android:name="android.intent.action.MAIN"/>
1060 <category android:name="com.android.test.hwui.TEST"/>
Chris Craikf533e942014-01-14 22:35:37 -08001061 </intent-filter>
1062 </activity>
1063
Ashwini Orugantie178c24d2020-03-18 15:46:39 -07001064 <activity android:name=".ProjectionClippingActivity"
1065 android:label="Reordering/Projection Clipping"
1066 android:exported="true">
Chris Craik3f0854292014-04-15 16:18:08 -07001067 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -07001068 <action android:name="android.intent.action.MAIN"/>
1069 <category android:name="com.android.test.hwui.TEST"/>
Chris Craik3f0854292014-04-15 16:18:08 -07001070 </intent-filter>
1071 </activity>
Chris Craikab008f02014-05-23 17:55:03 -07001072
Ashwini Orugantie178c24d2020-03-18 15:46:39 -07001073 <activity android:name=".ZOrderingActivity"
1074 android:label="Reordering/Z Ordering"
1075 android:exported="true">
Chris Craikab008f02014-05-23 17:55:03 -07001076 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -07001077 <action android:name="android.intent.action.MAIN"/>
1078 <category android:name="com.android.test.hwui.TEST"/>
Chris Craikab008f02014-05-23 17:55:03 -07001079 </intent-filter>
1080 </activity>
ztenghuib4dabad2014-06-30 13:04:47 -07001081
Ashwini Orugantie178c24d2020-03-18 15:46:39 -07001082 <activity android:name="GLDepthTestActivity"
1083 android:label="Reordering/OpenGL Depth Test"
1084 android:exported="true">
ztenghuib4dabad2014-06-30 13:04:47 -07001085 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -07001086 <action android:name="android.intent.action.MAIN"/>
1087 <category android:name="com.android.test.hwui.TEST"/>
ztenghuib4dabad2014-06-30 13:04:47 -07001088 </intent-filter>
1089 </activity>
John Reckd3de42c2014-07-15 14:29:33 -07001090
Ashwini Orugantie178c24d2020-03-18 15:46:39 -07001091 <activity android:name="CirclePropActivity"
1092 android:label="Animation/Circle Props"
1093 android:exported="true">
John Reckd3de42c2014-07-15 14:29:33 -07001094 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -07001095 <action android:name="android.intent.action.MAIN"/>
1096 <category android:name="com.android.test.hwui.TEST"/>
John Reckd3de42c2014-07-15 14:29:33 -07001097 </intent-filter>
1098 </activity>
1099
Ashwini Orugantie178c24d2020-03-18 15:46:39 -07001100 <activity android:name="RevealActivity"
1101 android:label="Animation/Reveal Animation"
1102 android:exported="true">
John Reckd3de42c2014-07-15 14:29:33 -07001103 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -07001104 <action android:name="android.intent.action.MAIN"/>
1105 <category android:name="com.android.test.hwui.TEST"/>
John Reckd3de42c2014-07-15 14:29:33 -07001106 </intent-filter>
1107 </activity>
1108
Derek Sollenberger783e5ae2021-01-11 15:44:46 -05001109 <activity android:name="RippleActivity"
1110 android:label="Animation/Ripple Animation"
1111 android:exported="true">
1112 <intent-filter>
1113 <action android:name="android.intent.action.MAIN"/>
1114 <category android:name="com.android.test.hwui.TEST"/>
1115 </intent-filter>
1116 </activity>
1117
Ashwini Orugantie178c24d2020-03-18 15:46:39 -07001118 <activity android:name="MultiProducerActivity"
1119 android:label="Threads/Multiple Producers"
1120 android:exported="true">
Skuhneea7a7fb2015-08-28 07:10:31 -07001121 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -07001122 <action android:name="android.intent.action.MAIN"/>
1123 <category android:name="com.android.test.hwui.TEST"/>
Skuhneea7a7fb2015-08-28 07:10:31 -07001124 </intent-filter>
1125 </activity>
1126
Ashwini Orugantie178c24d2020-03-18 15:46:39 -07001127 <activity android:name="PixelCopyWindow"
1128 android:label="Readback/Window"
1129 android:screenOrientation="fullSensor"
1130 android:exported="true">
John Reck912bebe2016-12-07 16:36:15 -08001131 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -07001132 <action android:name="android.intent.action.MAIN"/>
1133 <category android:name="com.android.test.hwui.TEST"/>
John Reck912bebe2016-12-07 16:36:15 -08001134 </intent-filter>
1135 </activity>
1136
Ashwini Orugantie178c24d2020-03-18 15:46:39 -07001137 <activity android:name="PositionListenerActivity"
1138 android:label="RenderNode/PositionListener"
1139 android:screenOrientation="fullSensor"
1140 android:exported="true">
John Reckfe5dfca2019-01-17 17:01:32 -08001141 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -07001142 <action android:name="android.intent.action.MAIN"/>
1143 <category android:name="com.android.test.hwui.TEST"/>
John Reckfe5dfca2019-01-17 17:01:32 -08001144 </intent-filter>
1145 </activity>
1146
Ashwini Orugantie178c24d2020-03-18 15:46:39 -07001147 <activity android:name="CustomRenderer"
1148 android:label="HardwareRenderer/HelloTakeSurface"
1149 android:screenOrientation="fullSensor"
1150 android:exported="true">
John Reckfe5dfca2019-01-17 17:01:32 -08001151 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -07001152 <action android:name="android.intent.action.MAIN"/>
1153 <category android:name="com.android.test.hwui.TEST"/>
John Reckfe5dfca2019-01-17 17:01:32 -08001154 </intent-filter>
1155 </activity>
1156
Nader Jawada3521852023-01-30 20:23:46 -08001157 <activity android:name="HardwareBufferRendererActivity"
1158 android:label="HardwareRenderer/HardwareBufferRenderer"
1159 android:exported="true">
1160 <intent-filter>
1161 <action android:name="android.intent.action.MAIN"/>
1162 <category android:name="com.android.test.hwui.TEST"/>
1163 </intent-filter>
1164 </activity>
1165
Ashwini Orugantie178c24d2020-03-18 15:46:39 -07001166 <activity android:name="MyLittleTextureView"
1167 android:label="HardwareRenderer/MyLittleTextureView"
1168 android:screenOrientation="fullSensor"
1169 android:exported="true">
John Reck51aa1892019-01-30 15:28:44 -08001170 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -07001171 <action android:name="android.intent.action.MAIN"/>
1172 <category android:name="com.android.test.hwui.TEST"/>
John Reck51aa1892019-01-30 15:28:44 -08001173 </intent-filter>
1174 </activity>
1175
Angel Aguayo90c46ee2022-11-08 23:42:09 +00001176 <activity android:name="MeshActivity"
1177 android:label="Mesh/SimpleMesh"
1178 android:exported="true">
1179 <intent-filter>
1180 <action android:name="android.intent.action.MAIN"/>
1181 <category android:name="com.android.test.hwui.TEST"/>
1182 </intent-filter>
1183 </activity>
Angel Aguayo8be0e4c2023-01-10 19:55:53 +00001184 <activity android:name="MeshLargeActivity"
1185 android:label="Mesh/LargeMesh"
1186 android:exported="true">
1187 <intent-filter>
1188 <action android:name="android.intent.action.MAIN"/>
1189 <category android:name="com.android.test.hwui.TEST"/>
1190 </intent-filter>
1191 </activity>
Romain Guy0bbae082010-06-15 18:03:40 -07001192 </application>
1193</manifest>