1*d57664e9SAndroid Build Coastguard Worker<?xml version="1.0" encoding="utf-8"?> 2*d57664e9SAndroid Build Coastguard Worker<!-- 3*d57664e9SAndroid Build Coastguard Worker ~ Copyright (C) 2015 The Android Open Source Project 4*d57664e9SAndroid Build Coastguard Worker ~ 5*d57664e9SAndroid Build Coastguard Worker ~ Licensed under the Apache License, Version 2.0 (the "License"); 6*d57664e9SAndroid Build Coastguard Worker ~ you may not use this file except in compliance with the License. 7*d57664e9SAndroid Build Coastguard Worker ~ You may obtain a copy of the License at 8*d57664e9SAndroid Build Coastguard Worker ~ 9*d57664e9SAndroid Build Coastguard Worker ~ http://www.apache.org/licenses/LICENSE-2.0 10*d57664e9SAndroid Build Coastguard Worker ~ 11*d57664e9SAndroid Build Coastguard Worker ~ Unless required by applicable law or agreed to in writing, software 12*d57664e9SAndroid Build Coastguard Worker ~ distributed under the License is distributed on an "AS IS" BASIS, 13*d57664e9SAndroid Build Coastguard Worker ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14*d57664e9SAndroid Build Coastguard Worker ~ See the License for the specific language governing permissions and 15*d57664e9SAndroid Build Coastguard Worker ~ limitations under the License 16*d57664e9SAndroid Build Coastguard Worker --> 17*d57664e9SAndroid Build Coastguard Worker 18*d57664e9SAndroid Build Coastguard Worker<manifest xmlns:android="http://schemas.android.com/apk/res/android" 19*d57664e9SAndroid Build Coastguard Worker xmlns:tools="http://schemas.android.com/tools" 20*d57664e9SAndroid Build Coastguard Worker package="com.android.test.uibench"> 21*d57664e9SAndroid Build Coastguard Worker 22*d57664e9SAndroid Build Coastguard Worker <application android:allowBackup="false" 23*d57664e9SAndroid Build Coastguard Worker android:theme="@style/Theme.AppCompat.Light.DarkActionBar" 24*d57664e9SAndroid Build Coastguard Worker tools:ignore="MissingApplicationIcon"> 25*d57664e9SAndroid Build Coastguard Worker <uses-library android:name="android.test.runner"/> 26*d57664e9SAndroid Build Coastguard Worker 27*d57664e9SAndroid Build Coastguard Worker <!-- Root navigation activity --> 28*d57664e9SAndroid Build Coastguard Worker <activity android:name=".MainActivity" 29*d57664e9SAndroid Build Coastguard Worker android:label="UiBench" 30*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 31*d57664e9SAndroid Build Coastguard Worker <intent-filter> 32*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.MAIN"/> 33*d57664e9SAndroid Build Coastguard Worker <category android:name="android.intent.category.DEFAULT"/> 34*d57664e9SAndroid Build Coastguard Worker <category android:name="android.intent.category.LAUNCHER"/> 35*d57664e9SAndroid Build Coastguard Worker </intent-filter> 36*d57664e9SAndroid Build Coastguard Worker </activity> 37*d57664e9SAndroid Build Coastguard Worker 38*d57664e9SAndroid Build Coastguard Worker <!-- General --> 39*d57664e9SAndroid Build Coastguard Worker <activity android:name=".DialogListActivity" 40*d57664e9SAndroid Build Coastguard Worker android:label="General/Dialog List" 41*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 42*d57664e9SAndroid Build Coastguard Worker <intent-filter> 43*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.MAIN"/> 44*d57664e9SAndroid Build Coastguard Worker <category android:name="com.android.test.uibench.TEST"/> 45*d57664e9SAndroid Build Coastguard Worker </intent-filter> 46*d57664e9SAndroid Build Coastguard Worker </activity> 47*d57664e9SAndroid Build Coastguard Worker <activity android:name=".GlTextureViewActivity" 48*d57664e9SAndroid Build Coastguard Worker android:label="General/GL TextureView" 49*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 50*d57664e9SAndroid Build Coastguard Worker <intent-filter> 51*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.MAIN"/> 52*d57664e9SAndroid Build Coastguard Worker <category android:name="com.android.test.uibench.TEST"/> 53*d57664e9SAndroid Build Coastguard Worker </intent-filter> 54*d57664e9SAndroid Build Coastguard Worker </activity> 55*d57664e9SAndroid Build Coastguard Worker <activity android:name=".FullscreenOverdrawActivity" 56*d57664e9SAndroid Build Coastguard Worker android:label="General/Fullscreen Overdraw" 57*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 58*d57664e9SAndroid Build Coastguard Worker <intent-filter> 59*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.MAIN"/> 60*d57664e9SAndroid Build Coastguard Worker <category android:name="com.android.test.uibench.TEST"/> 61*d57664e9SAndroid Build Coastguard Worker </intent-filter> 62*d57664e9SAndroid Build Coastguard Worker </activity> 63*d57664e9SAndroid Build Coastguard Worker <activity android:name=".InvalidateActivity" 64*d57664e9SAndroid Build Coastguard Worker android:label="General/Invalidate" 65*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 66*d57664e9SAndroid Build Coastguard Worker <intent-filter> 67*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.MAIN"/> 68*d57664e9SAndroid Build Coastguard Worker <category android:name="com.android.test.uibench.TEST"/> 69*d57664e9SAndroid Build Coastguard Worker </intent-filter> 70*d57664e9SAndroid Build Coastguard Worker </activity> 71*d57664e9SAndroid Build Coastguard Worker <activity android:name=".InvalidateTreeActivity" 72*d57664e9SAndroid Build Coastguard Worker android:label="General/Invalidate Tree" 73*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 74*d57664e9SAndroid Build Coastguard Worker <intent-filter> 75*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.MAIN"/> 76*d57664e9SAndroid Build Coastguard Worker <category android:name="com.android.test.uibench.TEST"/> 77*d57664e9SAndroid Build Coastguard Worker </intent-filter> 78*d57664e9SAndroid Build Coastguard Worker </activity> 79*d57664e9SAndroid Build Coastguard Worker <activity android:name=".ResizeHWLayerActivity" 80*d57664e9SAndroid Build Coastguard Worker android:label="General/Resize HW Layer" 81*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 82*d57664e9SAndroid Build Coastguard Worker <intent-filter> 83*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.MAIN"/> 84*d57664e9SAndroid Build Coastguard Worker <category android:name="com.android.test.uibench.TEST"/> 85*d57664e9SAndroid Build Coastguard Worker </intent-filter> 86*d57664e9SAndroid Build Coastguard Worker </activity> 87*d57664e9SAndroid Build Coastguard Worker <activity android:name=".TrivialAnimationActivity" 88*d57664e9SAndroid Build Coastguard Worker android:label="General/Trivial Animation" 89*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 90*d57664e9SAndroid Build Coastguard Worker <intent-filter> 91*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.MAIN"/> 92*d57664e9SAndroid Build Coastguard Worker <category android:name="com.android.test.uibench.TEST"/> 93*d57664e9SAndroid Build Coastguard Worker </intent-filter> 94*d57664e9SAndroid Build Coastguard Worker </activity> 95*d57664e9SAndroid Build Coastguard Worker <activity android:name=".TrivialAnimationActivityWideGamut" 96*d57664e9SAndroid Build Coastguard Worker android:label="General/Trivial Animation (Wide Gamut)" 97*d57664e9SAndroid Build Coastguard Worker android:colorMode="wideColorGamut" 98*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 99*d57664e9SAndroid Build Coastguard Worker <intent-filter> 100*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.MAIN"/> 101*d57664e9SAndroid Build Coastguard Worker <category android:name="com.android.test.uibench.TEST"/> 102*d57664e9SAndroid Build Coastguard Worker </intent-filter> 103*d57664e9SAndroid Build Coastguard Worker </activity> 104*d57664e9SAndroid Build Coastguard Worker <activity android:name=".TrivialListActivity" 105*d57664e9SAndroid Build Coastguard Worker android:label="General/Trivial ListView" 106*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 107*d57664e9SAndroid Build Coastguard Worker <intent-filter> 108*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.MAIN"/> 109*d57664e9SAndroid Build Coastguard Worker <category android:name="com.android.test.uibench.TEST"/> 110*d57664e9SAndroid Build Coastguard Worker </intent-filter> 111*d57664e9SAndroid Build Coastguard Worker </activity> 112*d57664e9SAndroid Build Coastguard Worker <activity android:name=".FadingEdgeListActivity" 113*d57664e9SAndroid Build Coastguard Worker android:label="General/Fading Edge ListView" 114*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 115*d57664e9SAndroid Build Coastguard Worker <intent-filter> 116*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.MAIN"/> 117*d57664e9SAndroid Build Coastguard Worker <category android:name="com.android.test.uibench.TEST"/> 118*d57664e9SAndroid Build Coastguard Worker </intent-filter> 119*d57664e9SAndroid Build Coastguard Worker </activity> 120*d57664e9SAndroid Build Coastguard Worker <activity android:name=".SaveLayerInterleaveActivity" 121*d57664e9SAndroid Build Coastguard Worker android:label="General/SaveLayer Animation" 122*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 123*d57664e9SAndroid Build Coastguard Worker <intent-filter> 124*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.MAIN"/> 125*d57664e9SAndroid Build Coastguard Worker <category android:name="com.android.test.uibench.TEST"/> 126*d57664e9SAndroid Build Coastguard Worker </intent-filter> 127*d57664e9SAndroid Build Coastguard Worker </activity> 128*d57664e9SAndroid Build Coastguard Worker <activity android:name=".ClippedListActivity" 129*d57664e9SAndroid Build Coastguard Worker android:label="General/Clipped ListView" 130*d57664e9SAndroid Build Coastguard Worker android:theme="@style/NoActionBar" 131*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 132*d57664e9SAndroid Build Coastguard Worker <intent-filter> 133*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.MAIN"/> 134*d57664e9SAndroid Build Coastguard Worker <category android:name="com.android.test.uibench.TEST"/> 135*d57664e9SAndroid Build Coastguard Worker </intent-filter> 136*d57664e9SAndroid Build Coastguard Worker </activity> 137*d57664e9SAndroid Build Coastguard Worker <activity android:name=".TrivialRecyclerViewActivity" 138*d57664e9SAndroid Build Coastguard Worker android:label="General/Trivial RecyclerView" 139*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 140*d57664e9SAndroid Build Coastguard Worker <intent-filter> 141*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.MAIN"/> 142*d57664e9SAndroid Build Coastguard Worker <category android:name="com.android.test.uibench.TEST"/> 143*d57664e9SAndroid Build Coastguard Worker </intent-filter> 144*d57664e9SAndroid Build Coastguard Worker </activity> 145*d57664e9SAndroid Build Coastguard Worker <activity android:name=".SlowBindRecyclerViewActivity" 146*d57664e9SAndroid Build Coastguard Worker android:label="General/Slow Bind RecyclerView" 147*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 148*d57664e9SAndroid Build Coastguard Worker <intent-filter> 149*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.MAIN"/> 150*d57664e9SAndroid Build Coastguard Worker <category android:name="com.android.test.uibench.TEST"/> 151*d57664e9SAndroid Build Coastguard Worker </intent-filter> 152*d57664e9SAndroid Build Coastguard Worker </activity> 153*d57664e9SAndroid Build Coastguard Worker <activity android:name=".SlowNestedRecyclerViewActivity" 154*d57664e9SAndroid Build Coastguard Worker android:label="General/Slow Nested RecyclerView" 155*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 156*d57664e9SAndroid Build Coastguard Worker <intent-filter> 157*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.MAIN"/> 158*d57664e9SAndroid Build Coastguard Worker <category android:name="com.android.test.uibench.TEST"/> 159*d57664e9SAndroid Build Coastguard Worker </intent-filter> 160*d57664e9SAndroid Build Coastguard Worker </activity> 161*d57664e9SAndroid Build Coastguard Worker <activity android:name=".ActivityTransition" 162*d57664e9SAndroid Build Coastguard Worker android:label="Transitions/Activity Transition" 163*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 164*d57664e9SAndroid Build Coastguard Worker <intent-filter> 165*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.MAIN"/> 166*d57664e9SAndroid Build Coastguard Worker <category android:name="com.android.test.uibench.TEST"/> 167*d57664e9SAndroid Build Coastguard Worker </intent-filter> 168*d57664e9SAndroid Build Coastguard Worker </activity> 169*d57664e9SAndroid Build Coastguard Worker <activity android:name=".ActivityTransitionDetails" 170*d57664e9SAndroid Build Coastguard Worker android:label="Transitions/Activity Transition " 171*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 172*d57664e9SAndroid Build Coastguard Worker <intent-filter> 173*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.MAIN"/> 174*d57664e9SAndroid Build Coastguard Worker <!-- Part of ActivityTransition test above, so not in TEST category --> 175*d57664e9SAndroid Build Coastguard Worker </intent-filter> 176*d57664e9SAndroid Build Coastguard Worker </activity> 177*d57664e9SAndroid Build Coastguard Worker 178*d57664e9SAndroid Build Coastguard Worker <!-- Rendering --> 179*d57664e9SAndroid Build Coastguard Worker <activity android:name=".BitmapUploadActivity" 180*d57664e9SAndroid Build Coastguard Worker android:label="Rendering/Bitmap Upload" 181*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 182*d57664e9SAndroid Build Coastguard Worker <intent-filter> 183*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.MAIN"/> 184*d57664e9SAndroid Build Coastguard Worker <category android:name="com.android.test.uibench.TEST"/> 185*d57664e9SAndroid Build Coastguard Worker </intent-filter> 186*d57664e9SAndroid Build Coastguard Worker </activity> 187*d57664e9SAndroid Build Coastguard Worker <activity android:name=".ShadowGridActivity" 188*d57664e9SAndroid Build Coastguard Worker android:label="Rendering/Shadow Grid" 189*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 190*d57664e9SAndroid Build Coastguard Worker <intent-filter> 191*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.MAIN"/> 192*d57664e9SAndroid Build Coastguard Worker <category android:name="com.android.test.uibench.TEST"/> 193*d57664e9SAndroid Build Coastguard Worker </intent-filter> 194*d57664e9SAndroid Build Coastguard Worker </activity> 195*d57664e9SAndroid Build Coastguard Worker <activity android:name=".RenderingJitter" 196*d57664e9SAndroid Build Coastguard Worker android:label="Rendering/Jitter" 197*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 198*d57664e9SAndroid Build Coastguard Worker <intent-filter> 199*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.MAIN"/> 200*d57664e9SAndroid Build Coastguard Worker <category android:name="com.android.test.uibench.TEST"/> 201*d57664e9SAndroid Build Coastguard Worker </intent-filter> 202*d57664e9SAndroid Build Coastguard Worker </activity> 203*d57664e9SAndroid Build Coastguard Worker 204*d57664e9SAndroid Build Coastguard Worker <!-- Inflation --> 205*d57664e9SAndroid Build Coastguard Worker <activity android:name=".InflatingListActivity" 206*d57664e9SAndroid Build Coastguard Worker android:label="Inflation/Inflating ListView" 207*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 208*d57664e9SAndroid Build Coastguard Worker <intent-filter> 209*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.MAIN"/> 210*d57664e9SAndroid Build Coastguard Worker <category android:name="com.android.test.uibench.TEST"/> 211*d57664e9SAndroid Build Coastguard Worker </intent-filter> 212*d57664e9SAndroid Build Coastguard Worker </activity> 213*d57664e9SAndroid Build Coastguard Worker 214*d57664e9SAndroid Build Coastguard Worker <activity-alias android:name=".InflatingEmojiListActivity" 215*d57664e9SAndroid Build Coastguard Worker android:label="Inflation/Inflating ListView with Emoji" 216*d57664e9SAndroid Build Coastguard Worker android:targetActivity=".InflatingListActivity" 217*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 218*d57664e9SAndroid Build Coastguard Worker <intent-filter> 219*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.MAIN"/> 220*d57664e9SAndroid Build Coastguard Worker <category android:name="com.android.test.uibench.TEST"/> 221*d57664e9SAndroid Build Coastguard Worker </intent-filter> 222*d57664e9SAndroid Build Coastguard Worker </activity-alias> 223*d57664e9SAndroid Build Coastguard Worker 224*d57664e9SAndroid Build Coastguard Worker <activity-alias android:name=".InflatingHanListActivity" 225*d57664e9SAndroid Build Coastguard Worker android:label="Inflation/Inflating ListView with Han Characters" 226*d57664e9SAndroid Build Coastguard Worker android:targetActivity=".InflatingListActivity" 227*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 228*d57664e9SAndroid Build Coastguard Worker <intent-filter> 229*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.MAIN"/> 230*d57664e9SAndroid Build Coastguard Worker <category android:name="com.android.test.uibench.TEST"/> 231*d57664e9SAndroid Build Coastguard Worker </intent-filter> 232*d57664e9SAndroid Build Coastguard Worker </activity-alias> 233*d57664e9SAndroid Build Coastguard Worker 234*d57664e9SAndroid Build Coastguard Worker <activity-alias android:name=".InflatingLongStringListActivity" 235*d57664e9SAndroid Build Coastguard Worker android:label="Inflation/Inflating ListView with long string" 236*d57664e9SAndroid Build Coastguard Worker android:targetActivity=".InflatingListActivity" 237*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 238*d57664e9SAndroid Build Coastguard Worker <intent-filter> 239*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.MAIN"/> 240*d57664e9SAndroid Build Coastguard Worker <category android:name="com.android.test.uibench.TEST"/> 241*d57664e9SAndroid Build Coastguard Worker </intent-filter> 242*d57664e9SAndroid Build Coastguard Worker </activity-alias> 243*d57664e9SAndroid Build Coastguard Worker 244*d57664e9SAndroid Build Coastguard Worker <!-- Text --> 245*d57664e9SAndroid Build Coastguard Worker <activity android:name=".EditTextTypeActivity" 246*d57664e9SAndroid Build Coastguard Worker android:label="Text/EditText Typing" 247*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 248*d57664e9SAndroid Build Coastguard Worker <intent-filter> 249*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.MAIN"/> 250*d57664e9SAndroid Build Coastguard Worker <category android:name="com.android.test.uibench.TEST"/> 251*d57664e9SAndroid Build Coastguard Worker </intent-filter> 252*d57664e9SAndroid Build Coastguard Worker </activity> 253*d57664e9SAndroid Build Coastguard Worker <activity android:name=".TextCacheLowHitrateActivity" 254*d57664e9SAndroid Build Coastguard Worker android:label="Text/Layout Cache Low Hitrate" 255*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 256*d57664e9SAndroid Build Coastguard Worker <intent-filter> 257*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.MAIN"/> 258*d57664e9SAndroid Build Coastguard Worker <category android:name="com.android.test.uibench.TEST"/> 259*d57664e9SAndroid Build Coastguard Worker </intent-filter> 260*d57664e9SAndroid Build Coastguard Worker </activity> 261*d57664e9SAndroid Build Coastguard Worker <activity android:name=".TextCacheHighHitrateActivity" 262*d57664e9SAndroid Build Coastguard Worker android:label="Text/Layout Cache High Hitrate" 263*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 264*d57664e9SAndroid Build Coastguard Worker <intent-filter> 265*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.MAIN"/> 266*d57664e9SAndroid Build Coastguard Worker <category android:name="com.android.test.uibench.TEST"/> 267*d57664e9SAndroid Build Coastguard Worker </intent-filter> 268*d57664e9SAndroid Build Coastguard Worker </activity> 269*d57664e9SAndroid Build Coastguard Worker 270*d57664e9SAndroid Build Coastguard Worker <!-- WebView --> 271*d57664e9SAndroid Build Coastguard Worker <activity android:name=".ScrollableWebViewActivity" 272*d57664e9SAndroid Build Coastguard Worker android:label="WebView/Scrollable WebView" 273*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 274*d57664e9SAndroid Build Coastguard Worker <intent-filter> 275*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.MAIN"/> 276*d57664e9SAndroid Build Coastguard Worker <category android:name="com.android.test.uibench.TEST"/> 277*d57664e9SAndroid Build Coastguard Worker </intent-filter> 278*d57664e9SAndroid Build Coastguard Worker </activity> 279*d57664e9SAndroid Build Coastguard Worker 280*d57664e9SAndroid Build Coastguard Worker <!-- Navigation Drawer --> 281*d57664e9SAndroid Build Coastguard Worker <activity android:name=".NavigationDrawerActivity" 282*d57664e9SAndroid Build Coastguard Worker android:label="Navigation Drawer Activity" 283*d57664e9SAndroid Build Coastguard Worker android:theme="@style/NoActionBar" 284*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 285*d57664e9SAndroid Build Coastguard Worker <intent-filter> 286*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.MAIN"/> 287*d57664e9SAndroid Build Coastguard Worker <category android:name="com.android.test.uibench.TEST"/> 288*d57664e9SAndroid Build Coastguard Worker </intent-filter> 289*d57664e9SAndroid Build Coastguard Worker </activity> 290*d57664e9SAndroid Build Coastguard Worker 291*d57664e9SAndroid Build Coastguard Worker <!-- Notification Shade --> 292*d57664e9SAndroid Build Coastguard Worker <activity android:name=".NotificationShadeActivity" 293*d57664e9SAndroid Build Coastguard Worker android:label="Notification Shade" 294*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 295*d57664e9SAndroid Build Coastguard Worker <intent-filter> 296*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.MAIN"/> 297*d57664e9SAndroid Build Coastguard Worker <category android:name="com.android.test.uibench.TEST"/> 298*d57664e9SAndroid Build Coastguard Worker </intent-filter> 299*d57664e9SAndroid Build Coastguard Worker </activity> 300*d57664e9SAndroid Build Coastguard Worker 301*d57664e9SAndroid Build Coastguard Worker <activity android:name=".leanback.BrowseActivity" 302*d57664e9SAndroid Build Coastguard Worker android:theme="@style/Theme.Leanback.Browse" 303*d57664e9SAndroid Build Coastguard Worker android:label="Leanback/Browse Fragment" 304*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 305*d57664e9SAndroid Build Coastguard Worker <intent-filter> 306*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.MAIN"/> 307*d57664e9SAndroid Build Coastguard Worker <category android:name="com.android.test.uibench.TEST"/> 308*d57664e9SAndroid Build Coastguard Worker </intent-filter> 309*d57664e9SAndroid Build Coastguard Worker </activity> 310*d57664e9SAndroid Build Coastguard Worker 311*d57664e9SAndroid Build Coastguard Worker <activity 312*d57664e9SAndroid Build Coastguard Worker android:name="WindowInsetsControllerActivity" 313*d57664e9SAndroid Build Coastguard Worker android:label="WindowInsetsControllerActivity" 314*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 315*d57664e9SAndroid Build Coastguard Worker <intent-filter> 316*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.MAIN" /> 317*d57664e9SAndroid Build Coastguard Worker <category android:name="com.android.test.uibench.TEST" /> 318*d57664e9SAndroid Build Coastguard Worker </intent-filter> 319*d57664e9SAndroid Build Coastguard Worker </activity> 320*d57664e9SAndroid Build Coastguard Worker </application> 321*d57664e9SAndroid Build Coastguard Worker</manifest> 322