| Chris Craik | 8a1c0e8 | 2015-08-26 10:47:18 -0700 | [diff] [blame] | 1 | <!-- |
| 2 | ~ Copyright (C) 2015 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 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| Chris Craik | b3dba55 | 2015-08-31 17:22:04 -0700 | [diff] [blame] | 17 | xmlns:tools="http://schemas.android.com/tools" |
| 18 | package="com.android.test.uibench"> |
| Chris Craik | 8a1c0e8 | 2015-08-26 10:47:18 -0700 | [diff] [blame] | 19 | |
| 20 | <application |
| 21 | android:allowBackup="false" |
| Chris Craik | b3dba55 | 2015-08-31 17:22:04 -0700 | [diff] [blame] | 22 | android:theme="@style/Theme.AppCompat.Light.DarkActionBar" |
| 23 | tools:ignore="MissingApplicationIcon"> |
| Chris Craik | 8a1c0e8 | 2015-08-26 10:47:18 -0700 | [diff] [blame] | 24 | <uses-library android:name="android.test.runner" /> |
| 25 | |
| 26 | <!-- Root navigation activity --> |
| 27 | <activity |
| 28 | android:name=".MainActivity" |
| 29 | android:label="UiBench"> |
| 30 | <intent-filter> |
| 31 | <action android:name="android.intent.action.MAIN" /> |
| 32 | <category android:name="android.intent.category.DEFAULT" /> |
| 33 | <category android:name="android.intent.category.LAUNCHER" /> |
| 34 | </intent-filter> |
| 35 | </activity> |
| 36 | |
| Chris Craik | baf4129 | 2015-08-31 14:51:03 -0700 | [diff] [blame] | 37 | <!-- General --> |
| Chris Craik | 8a1c0e8 | 2015-08-26 10:47:18 -0700 | [diff] [blame] | 38 | <activity |
| Chris Craik | b3dba55 | 2015-08-31 17:22:04 -0700 | [diff] [blame] | 39 | android:name=".DialogListActivity" |
| 40 | android:label="General/Dialog List" > |
| 41 | <intent-filter> |
| 42 | <action android:name="android.intent.action.MAIN" /> |
| 43 | <category android:name="com.android.test.uibench.TEST" /> |
| 44 | </intent-filter> |
| 45 | </activity> |
| 46 | <activity |
| Chris Craik | 65b04b6 | 2015-08-27 14:34:17 -0700 | [diff] [blame] | 47 | android:name=".GlTextureViewActivity" |
| Chris Craik | baf4129 | 2015-08-31 14:51:03 -0700 | [diff] [blame] | 48 | android:label="General/GL TextureView" > |
| Chris Craik | 65b04b6 | 2015-08-27 14:34:17 -0700 | [diff] [blame] | 49 | <intent-filter> |
| 50 | <action android:name="android.intent.action.MAIN" /> |
| 51 | <category android:name="com.android.test.uibench.TEST" /> |
| 52 | </intent-filter> |
| 53 | </activity> |
| 54 | <activity |
| 55 | android:name=".FullscreenOverdrawActivity" |
| Chris Craik | baf4129 | 2015-08-31 14:51:03 -0700 | [diff] [blame] | 56 | android:label="General/Fullscreen Overdraw" > |
| 57 | <intent-filter> |
| 58 | <action android:name="android.intent.action.MAIN" /> |
| 59 | <category android:name="com.android.test.uibench.TEST" /> |
| 60 | </intent-filter> |
| 61 | </activity> |
| 62 | <activity |
| 63 | android:name=".InvalidateActivity" |
| 64 | android:label="General/Invalidate" > |
| Chris Craik | 65b04b6 | 2015-08-27 14:34:17 -0700 | [diff] [blame] | 65 | <intent-filter> |
| 66 | <action android:name="android.intent.action.MAIN" /> |
| 67 | <category android:name="com.android.test.uibench.TEST" /> |
| 68 | </intent-filter> |
| 69 | </activity> |
| 70 | <activity |
| Chris Craik | 7ff5cf7 | 2016-06-30 14:55:55 -0700 | [diff] [blame] | 71 | android:name=".InvalidateTreeActivity" |
| 72 | android:label="General/Invalidate Tree" > |
| 73 | <intent-filter> |
| 74 | <action android:name="android.intent.action.MAIN" /> |
| 75 | <category android:name="com.android.test.uibench.TEST" /> |
| 76 | </intent-filter> |
| 77 | </activity> |
| 78 | <activity |
| Chris Craik | 65b04b6 | 2015-08-27 14:34:17 -0700 | [diff] [blame] | 79 | android:name=".TrivialAnimationActivity" |
| Chris Craik | baf4129 | 2015-08-31 14:51:03 -0700 | [diff] [blame] | 80 | android:label="General/Trivial Animation" > |
| Chris Craik | 65b04b6 | 2015-08-27 14:34:17 -0700 | [diff] [blame] | 81 | <intent-filter> |
| 82 | <action android:name="android.intent.action.MAIN" /> |
| 83 | <category android:name="com.android.test.uibench.TEST" /> |
| 84 | </intent-filter> |
| 85 | </activity> |
| 86 | <activity |
| Chris Craik | 8a1c0e8 | 2015-08-26 10:47:18 -0700 | [diff] [blame] | 87 | android:name=".TrivialListActivity" |
| Chris Craik | baf4129 | 2015-08-31 14:51:03 -0700 | [diff] [blame] | 88 | android:label="General/Trivial ListView" > |
| 89 | <intent-filter> |
| 90 | <action android:name="android.intent.action.MAIN" /> |
| 91 | <category android:name="com.android.test.uibench.TEST" /> |
| 92 | </intent-filter> |
| 93 | </activity> |
| Md Haque | d68e8cb | 2015-09-01 12:00:34 -0700 | [diff] [blame] | 94 | <activity |
| 95 | android:name=".TrivialRecyclerViewActivity" |
| Chris Craik | 58427a6 | 2016-09-06 11:06:44 -0700 | [diff] [blame] | 96 | android:label="General/Trivial RecyclerView" > |
| Md Haque | d68e8cb | 2015-09-01 12:00:34 -0700 | [diff] [blame] | 97 | <intent-filter> |
| 98 | <action android:name="android.intent.action.MAIN" /> |
| 99 | <category android:name="com.android.test.uibench.TEST" /> |
| 100 | </intent-filter> |
| 101 | </activity> |
| 102 | <activity |
| Chris Craik | 58427a6 | 2016-09-06 11:06:44 -0700 | [diff] [blame] | 103 | android:name=".SlowBindRecyclerViewActivity" |
| 104 | android:label="General/Slow Bind RecyclerView" > |
| 105 | <intent-filter> |
| 106 | <action android:name="android.intent.action.MAIN" /> |
| 107 | <category android:name="com.android.test.uibench.TEST" /> |
| 108 | </intent-filter> |
| 109 | </activity> |
| 110 | <activity |
| Md Haque | d68e8cb | 2015-09-01 12:00:34 -0700 | [diff] [blame] | 111 | android:name=".ActivityTransition" |
| 112 | android:label="Transitions/Activity Transition" > |
| 113 | <intent-filter> |
| 114 | <action android:name="android.intent.action.MAIN" /> |
| 115 | <category android:name="com.android.test.uibench.TEST" /> |
| 116 | </intent-filter> |
| 117 | </activity> |
| 118 | <activity |
| 119 | android:name=".ActivityTransitionDetails" |
| 120 | android:label="Transitions/Activity Transition " > |
| 121 | <intent-filter> |
| 122 | <action android:name="android.intent.action.MAIN" /> |
| 123 | <!-- Part of ActivityTransition test above, so not in TEST category --> |
| 124 | </intent-filter> |
| 125 | </activity> |
| Chris Craik | baf4129 | 2015-08-31 14:51:03 -0700 | [diff] [blame] | 126 | |
| Chris Craik | b3dba55 | 2015-08-31 17:22:04 -0700 | [diff] [blame] | 127 | <!-- Rendering --> |
| Chris Craik | baf4129 | 2015-08-31 14:51:03 -0700 | [diff] [blame] | 128 | <activity |
| 129 | android:name=".BitmapUploadActivity" |
| Chris Craik | b3dba55 | 2015-08-31 17:22:04 -0700 | [diff] [blame] | 130 | android:label="Rendering/Bitmap Upload" > |
| 131 | <intent-filter> |
| 132 | <action android:name="android.intent.action.MAIN" /> |
| 133 | <category android:name="com.android.test.uibench.TEST" /> |
| 134 | </intent-filter> |
| 135 | </activity> |
| 136 | <activity |
| 137 | android:name=".ShadowGridActivity" |
| 138 | android:label="Rendering/Shadow Grid" > |
| 139 | <intent-filter> |
| 140 | <action android:name="android.intent.action.MAIN" /> |
| 141 | <category android:name="com.android.test.uibench.TEST" /> |
| 142 | </intent-filter> |
| 143 | </activity> |
| John Reck | 03a1edf | 2016-10-06 14:46:19 -0700 | [diff] [blame^] | 144 | <activity |
| 145 | android:name=".RenderingJitter" |
| 146 | android:label="Rendering/Jitter" > |
| 147 | <intent-filter> |
| 148 | <action android:name="android.intent.action.MAIN" /> |
| 149 | <category android:name="com.android.test.uibench.TEST" /> |
| 150 | </intent-filter> |
| 151 | </activity> |
| Chris Craik | b3dba55 | 2015-08-31 17:22:04 -0700 | [diff] [blame] | 152 | |
| 153 | <!-- Inflation --> |
| 154 | <activity |
| 155 | android:name=".InflatingListActivity" |
| 156 | android:label="Inflation/Inflating ListView" > |
| Chris Craik | baf4129 | 2015-08-31 14:51:03 -0700 | [diff] [blame] | 157 | <intent-filter> |
| 158 | <action android:name="android.intent.action.MAIN" /> |
| 159 | <category android:name="com.android.test.uibench.TEST" /> |
| 160 | </intent-filter> |
| 161 | </activity> |
| 162 | |
| 163 | <!-- Text --> |
| 164 | <activity |
| 165 | android:name=".EditTextTypeActivity" |
| 166 | android:label="Text/EditText Typing" > |
| Chris Craik | 8a1c0e8 | 2015-08-26 10:47:18 -0700 | [diff] [blame] | 167 | <intent-filter> |
| 168 | <action android:name="android.intent.action.MAIN" /> |
| 169 | <category android:name="com.android.test.uibench.TEST" /> |
| 170 | </intent-filter> |
| 171 | </activity> |
| Chris Craik | 4cbf5ef | 2015-09-01 15:30:57 -0700 | [diff] [blame] | 172 | <activity |
| 173 | android:name=".TextCacheLowHitrateActivity" |
| 174 | android:label="Text/Layout Cache Low Hitrate" > |
| 175 | <intent-filter> |
| 176 | <action android:name="android.intent.action.MAIN" /> |
| 177 | <category android:name="com.android.test.uibench.TEST" /> |
| 178 | </intent-filter> |
| 179 | </activity> |
| 180 | <activity |
| 181 | android:name=".TextCacheHighHitrateActivity" |
| 182 | android:label="Text/Layout Cache High Hitrate" > |
| 183 | <intent-filter> |
| 184 | <action android:name="android.intent.action.MAIN" /> |
| 185 | <category android:name="com.android.test.uibench.TEST" /> |
| 186 | </intent-filter> |
| 187 | </activity> |
| Chris Craik | e706ef6 | 2016-04-18 13:28:52 -0700 | [diff] [blame] | 188 | |
| 189 | <!-- WebView --> |
| 190 | <activity |
| 191 | android:name=".ScrollableWebViewActivity" |
| 192 | android:label="WebView/Scrollable WebView" > |
| 193 | <intent-filter> |
| 194 | <action android:name="android.intent.action.MAIN" /> |
| 195 | <category android:name="com.android.test.uibench.TEST" /> |
| 196 | </intent-filter> |
| 197 | </activity> |
| 198 | |
| Sergey Vasilinets | de396b3 | 2016-06-30 18:39:36 -0700 | [diff] [blame] | 199 | <!-- Navigation Drawer --> |
| 200 | <activity |
| 201 | android:name=".NavigationDrawerActivity" |
| 202 | android:label="Navigation Drawer Activity" |
| 203 | android:theme="@style/NoActionBar"> |
| 204 | <intent-filter> |
| 205 | <action android:name="android.intent.action.MAIN" /> |
| 206 | <category android:name="com.android.test.uibench.TEST" /> |
| 207 | </intent-filter> |
| 208 | </activity> |
| Sergey Vasilinets | 50f6733 | 2016-07-07 20:38:07 -0700 | [diff] [blame] | 209 | |
| 210 | <!-- Notification Shade --> |
| 211 | <activity |
| 212 | android:name=".NotificationShadeActivity" |
| 213 | android:label="Notification Shade"> |
| 214 | <intent-filter> |
| 215 | <action android:name="android.intent.action.MAIN" /> |
| 216 | <category android:name="com.android.test.uibench.TEST" /> |
| 217 | </intent-filter> |
| 218 | </activity> |
| Chris Craik | 8a1c0e8 | 2015-08-26 10:47:18 -0700 | [diff] [blame] | 219 | </application> |
| 220 | </manifest> |