The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 1 | <!-- |
| 2 | * Copyright (C) 2008 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" |
| 18 | package="com.android.cts.stub"> |
Scott Su | 380ec6f | 2009-04-21 00:38:12 -0700 | [diff] [blame] | 19 | |
| 20 | <permission android:name="android.app.cts.permission.TEST_GRANTED" |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 21 | android:protectionLevel="normal" |
Scott Su | 380ec6f | 2009-04-21 00:38:12 -0700 | [diff] [blame] | 22 | android:label="@string/permlab_testGranted" |
| 23 | android:description="@string/permdesc_testGranted"> |
| 24 | <meta-data android:name="android.app.cts.string" android:value="foo" /> |
| 25 | <meta-data android:name="android.app.cts.boolean" android:value="true" /> |
| 26 | <meta-data android:name="android.app.cts.integer" android:value="100" /> |
| 27 | <meta-data android:name="android.app.cts.color" android:value="#ff000000" /> |
| 28 | <meta-data android:name="android.app.cts.float" android:value="100.1" /> |
| 29 | <meta-data android:name="android.app.cts.reference" android:resource="@xml/metadata" /> |
| 30 | </permission> |
| 31 | |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 32 | <uses-permission android:name="android.permission.GET_TASKS" /> |
| 33 | <uses-permission android:name="android.permission.SET_WALLPAPER" /> |
| 34 | <uses-permission android:name="android.permission.SET_TIME_ZONE" /> |
| 35 | <uses-permission android:name="android.permission.WRITE_CONTACTS" /> |
| 36 | <uses-permission android:name="android.permission.READ_CONTACTS" /> |
| 37 | <uses-permission android:name="android.permission.DEVICE_POWER" /> |
| 38 | <uses-permission android:name="android.permission.STATUS_BAR" /> |
| 39 | <uses-permission android:name="android.permission.EXPAND_STATUS_BAR" /> |
| 40 | <uses-permission android:name="android.permission.VIBRATE" /> |
| 41 | <uses-permission android:name="android.permission.PERSISTENT_ACTIVITY" /> |
| 42 | <uses-permission android:name="android.permission.DISABLE_KEYGUARD" /> |
| 43 | <uses-permission android:name="android.permission.INSTALL_PACKAGES" /> |
| 44 | <uses-permission android:name="android.permission.WRITE_SETTINGS" /> |
| 45 | <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" /> |
| 46 | <uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" /> |
| 47 | <uses-permission android:name="android.permission.READ_SYNC_SETTINGS" /> |
| 48 | <uses-permission android:name="android.permission.WRITE_OWNER_DATA" /> |
| 49 | <uses-permission android:name="android.permission.READ_OWNER_DATA" /> |
| 50 | <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> |
| 51 | <uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" /> |
| 52 | <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> |
| 53 | <uses-permission android:name="android.permission.DELETE_CACHE_FILES" /> |
| 54 | <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" /> |
| 55 | <uses-permission android:name="android.permission.ADD_SYSTEM_SERVICE" /> |
| 56 | <uses-permission android:name="android.permission.BROADCAST_STICKY" /> |
| 57 | <uses-permission android:name="android.app.cts.permission.TEST_GRANTED" /> |
| 58 | <uses-permission android:name="android.permission.INJECT_EVENTS" /> |
| 59 | <uses-permission android:name="android.permission.INTERNET" /> |
| 60 | <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> |
| 61 | <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" /> |
| 62 | <uses-permission android:name="android.permission.WAKE_LOCK" /> |
Scott Su | 380ec6f | 2009-04-21 00:38:12 -0700 | [diff] [blame] | 63 | <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" /> |
| 64 | <uses-permission android:name="android.permission.CALL_PHONE" /> |
Scott Su | 7592e4f | 2009-04-30 17:26:49 -0700 | [diff] [blame] | 65 | <uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" /> |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 66 | |
Scott Su | 42f8f66 | 2009-04-23 23:40:02 -0700 | [diff] [blame] | 67 | <!-- Used for PackageManager test, don't delete this INTERNET permission --> |
| 68 | <uses-permission android:name="android.permission.INTERNET" /> |
| 69 | <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> |
| 70 | <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" /> |
| 71 | <uses-permission android:name="android.permission.WAKE_LOCK" /> |
| 72 | <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> |
| 73 | <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" /> |
| 74 | <uses-permission android:name="android.permission.CAMERA" /> |
| 75 | <uses-permission android:name="android.permission.SET_PREFERRED_APPLICATIONS" /> |
| 76 | <uses-permission android:name="android.permission.INSTALL_PACKAGES" /> |
| 77 | <uses-permission android:name="android.permission.GET_PACKAGE_SIZE" /> |
| 78 | <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> |
| 79 | <uses-permission android:name="android.permission.SEND_SMS" /> |
| 80 | <uses-permission android:name="android.permission.READ_PHONE_STATE" /> |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 81 | <uses-permission android:name="com.android.browser.permission.READ_HISTORY_BOOKMARKS" /> |
| 82 | <uses-permission android:name="com.android.browser.permission.WRITE_HISTORY_BOOKMARKS" /> |
| 83 | |
Scott Su | 42f8f66 | 2009-04-23 23:40:02 -0700 | [diff] [blame] | 84 | <!-- Used for PackageManager test, don't delete this permission-tree --> |
| 85 | <permission-tree android:name="com.android.cts.stub.permission.TEST_DYNAMIC" |
| 86 | android:label="Test Tree"/> |
| 87 | |
| 88 | <!-- Used for PackageManager test, don't delete this permission-group --> |
| 89 | <permission-group android:name="android.permission-group.COST_MONEY"/> |
| 90 | <!-- Used for PackageManager test, don't delete! --> |
| 91 | <uses-configuration/> |
| 92 | |
Scott Su | c14a50e | 2009-04-12 22:26:54 -0700 | [diff] [blame] | 93 | <application android:label="Android TestCase" |
| 94 | android:icon="@drawable/size_48x48" android:name="android.app.cts.MockApplication"> |
| 95 | |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 96 | <activity android:name="android.widget.cts.TwoLineListItemStubActivity" |
| 97 | android:label="TwoLineListItemStubActivity"> |
| 98 | <intent-filter> |
| 99 | <action android:name="android.intent.action.MAIN" /> |
| 100 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 101 | </intent-filter> |
| 102 | </activity> |
| 103 | |
| 104 | <activity android:name="android.view.cts.ViewStubStubActivity" |
| 105 | android:label="ViewStubStubActivity"> |
| 106 | <intent-filter> |
| 107 | <action android:name="android.intent.action.MAIN"/> |
| 108 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 109 | </intent-filter> |
| 110 | </activity> |
| 111 | |
| 112 | <activity android:name="android.widget.cts.ViewFlipperStubActivity" |
| 113 | android:label="ViewFlipperStubActivity"> |
| 114 | <intent-filter> |
| 115 | <action android:name="android.intent.action.MAIN" /> |
| 116 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 117 | </intent-filter> |
| 118 | </activity> |
| 119 | |
| 120 | <activity android:name="android.app.cts.DialogStubActivity" |
| 121 | android:label="DialogStubActivity"> |
| 122 | <intent-filter> |
| 123 | <action android:name="android.intent.action.MAIN" /> |
| 124 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 125 | </intent-filter> |
| 126 | </activity> |
| 127 | |
| 128 | <activity android:name="android.app.cts.MockActivity" android:label="MockActivity"> |
| 129 | <meta-data android:name="android.app.alias" |
| 130 | android:resource="@xml/alias" /> |
| 131 | <meta-data android:name="android.app.intent.filter" |
| 132 | android:resource="@xml/intentfilter" /> |
| 133 | <meta-data android:name="android.widget.layout" |
| 134 | android:resource="@xml/layout" /> |
| 135 | <meta-data android:name="android.view.merge" |
| 136 | android:resource="@xml/merge" /> |
| 137 | </activity> |
| 138 | |
| 139 | <activity android:name="android.widget.cts.DigitalClockStubActivity" |
| 140 | android:label="DigitalClockStubActivity"> |
| 141 | <intent-filter> |
| 142 | <action android:name="android.intent.action.MAIN" /> |
| 143 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 144 | </intent-filter> |
| 145 | </activity> |
| 146 | |
| 147 | <activity android:name="android.widget.cts.ImageViewStubActivity" |
| 148 | android:label="ImageViewStubActivity"> |
| 149 | <intent-filter> |
| 150 | <action android:name="android.intent.action.MAIN" /> |
| 151 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 152 | </intent-filter> |
| 153 | </activity> |
| 154 | |
Scott Su | c05d403 | 2009-04-23 19:02:52 -0700 | [diff] [blame] | 155 | <activity android:name="android.widget.cts.SeekBarStubActivity" |
| 156 | android:label="SeekBarStubActivity"> |
| 157 | <intent-filter> |
| 158 | <action android:name="android.intent.action.MAIN" /> |
| 159 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 160 | </intent-filter> |
| 161 | </activity> |
| 162 | |
Scott Su | c032163 | 2009-04-23 18:49:10 -0700 | [diff] [blame] | 163 | <activity android:name="android.widget.cts.ScrollViewStubActivity" |
| 164 | android:label="ScrollViewStubActivity"> |
| 165 | <intent-filter> |
| 166 | <action android:name="android.intent.action.MAIN" /> |
| 167 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 168 | </intent-filter> |
| 169 | </activity> |
| 170 | |
| 171 | <activity android:name="android.widget.cts.FrameLayoutStubActivity" |
| 172 | android:label="FrameLayoutStubActivity"> |
| 173 | <intent-filter> |
| 174 | <action android:name="android.intent.action.MAIN" /> |
| 175 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 176 | </intent-filter> |
| 177 | </activity> |
| 178 | |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 179 | <activity android:name="android.widget.cts.LinearLayoutStubActivity" |
| 180 | android:label="LinearLayoutStubActivity"> |
| 181 | <intent-filter> |
| 182 | <action android:name="android.intent.action.MAIN" /> |
| 183 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 184 | </intent-filter> |
| 185 | </activity> |
| 186 | |
| 187 | <activity android:name="android.widget.cts.ChronometerStubActivity" |
| 188 | android:label="ChronometerStubActivity"> |
| 189 | <intent-filter> |
| 190 | <action android:name="android.intent.action.MAIN"/> |
| 191 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 192 | </intent-filter> |
| 193 | </activity> |
| 194 | |
Scott Su | edf555c | 2009-04-23 20:32:37 -0700 | [diff] [blame] | 195 | <activity android:name="android.widget.cts.MediaControllerStubActivity" |
| 196 | android:label="MediaControllerStubActivity"> |
| 197 | <intent-filter> |
| 198 | <action android:name="android.intent.action.MAIN" /> |
| 199 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 200 | </intent-filter> |
| 201 | </activity> |
| 202 | |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 203 | <activity android:name="android.widget.cts.RatingBarStubActivity" |
| 204 | android:label="RatingBarStubActivity"> |
| 205 | <intent-filter> |
| 206 | <action android:name="android.intent.action.MAIN" /> |
| 207 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 208 | </intent-filter> |
| 209 | </activity> |
| 210 | |
| 211 | <activity android:name="android.view.cts.ViewGroupStubActivity" android:label="ViewGroupStubActivity"> |
| 212 | <intent-filter> |
| 213 | <action android:name="android.intent.action.MAIN"/> |
| 214 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 215 | </intent-filter> |
| 216 | </activity> |
| 217 | |
Phil Dubach | fb2c547 | 2009-05-14 17:17:01 -0700 | [diff] [blame] | 218 | <activity android:name="android.view.cts.WindowStubActivity" |
| 219 | android:label="WindowStubActivity"> |
| 220 | <intent-filter> |
| 221 | <action android:name="android.intent.action.MAIN" /> |
| 222 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 223 | </intent-filter> |
| 224 | </activity> |
| 225 | |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 226 | <activity android:name="android.widget.cts.ViewGroupStubActivity" |
| 227 | android:label="WidgetViewGroupStubActivity"> |
| 228 | <intent-filter> |
| 229 | <action android:name="android.intent.action.MAIN" /> |
| 230 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 231 | </intent-filter> |
| 232 | </activity> |
| 233 | |
Scott Su | 383a208 | 2009-04-23 21:30:51 -0700 | [diff] [blame] | 234 | <activity android:name="android.widget.cts.VideoViewStubActivity" |
| 235 | android:label="VideoViewStubActivity"> |
| 236 | <intent-filter> |
| 237 | <action android:name="android.intent.action.MAIN" /> |
| 238 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 239 | </intent-filter> |
| 240 | </activity> |
| 241 | |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 242 | <activity android:name="android.widget.cts.AutoCompleteStubActivity" |
| 243 | android:label="AutoCompleteStubActivity"> |
| 244 | <intent-filter> |
| 245 | <action android:name="android.intent.action.MAIN" /> |
| 246 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 247 | </intent-filter> |
| 248 | </activity> |
| 249 | |
| 250 | <activity android:name="android.widget.cts.ViewAnimatorStubActivity" android:label="ViewAnimatorStubActivity"> |
| 251 | <intent-filter> |
| 252 | <action android:name="android.intent.action.MAIN"/> |
| 253 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 254 | </intent-filter> |
| 255 | </activity> |
| 256 | |
| 257 | <activity android:name="android.widget.cts.GridViewStubActivity" |
| 258 | android:label="GridViewStubActivity"> |
| 259 | <intent-filter> |
| 260 | <action android:name="android.intent.action.MAIN" /> |
| 261 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 262 | </intent-filter> |
| 263 | </activity> |
| 264 | |
Scott Su | da9f68e | 2009-04-07 19:58:06 -0700 | [diff] [blame] | 265 | <activity android:name="android.widget.cts.RelativeLayoutStubActivity" |
| 266 | android:label="RelativeLayoutStubActivity"> |
| 267 | <intent-filter> |
| 268 | <action android:name="android.intent.action.MAIN" /> |
| 269 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 270 | </intent-filter> |
| 271 | </activity> |
| 272 | |
| 273 | <activity android:name="android.widget.cts.FrameLayoutStubActivity" |
| 274 | android:label="FrameLayoutStubActivity"> |
| 275 | <intent-filter> |
| 276 | <action android:name="android.intent.action.MAIN" /> |
| 277 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 278 | </intent-filter> |
| 279 | </activity> |
| 280 | |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 281 | <service android:name="android.content.cts.MockContextWrapperService" /> |
| 282 | <activity android:name=".content.ContextWrapperStubActivity" |
| 283 | android:label="ContextWrapperStubActivity"> |
| 284 | <intent-filter> |
| 285 | <action android:name="android.intent.action.MAIN" /> |
| 286 | </intent-filter> |
| 287 | </activity> |
| 288 | |
Phil Dubach | b9d142f | 2009-05-20 14:42:25 -0700 | [diff] [blame^] | 289 | <receiver android:name="android.content.cts.MockReceiverFirst"> |
| 290 | <intent-filter android:priority="3"> |
| 291 | <action android:name="android.content.cts.BroadcastReceiverTest.BROADCAST_TESTABORT" /> |
| 292 | </intent-filter> |
| 293 | </receiver> |
| 294 | <receiver android:name="android.content.cts.MockReceiverAbort"> |
| 295 | <intent-filter android:priority="2"> |
| 296 | <action android:name="android.content.cts.BroadcastReceiverTest.BROADCAST_TESTABORT" /> |
| 297 | </intent-filter> |
| 298 | </receiver> |
| 299 | <receiver android:name="android.content.cts.MockReceiver"> |
| 300 | <intent-filter android:priority="1"> |
| 301 | <action android:name="android.content.cts.BroadcastReceiverTest.BROADCAST_MOCKTEST" /> |
| 302 | <action android:name="android.content.cts.BroadcastReceiverTest.BROADCAST_TESTABORT" /> |
| 303 | <action android:name="android.content.cts.ContextWrapperTest.BROADCAST_TESTORDER" /> |
| 304 | </intent-filter> |
| 305 | </receiver> |
| 306 | |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 307 | <activity android:name="android.provider.cts.BrowserStubActivity" |
| 308 | android:label="BrowserStubActivity"> |
| 309 | <intent-filter> |
| 310 | <action android:name="android.intent.action.MAIN" /> |
| 311 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 312 | </intent-filter> |
| 313 | </activity> |
| 314 | |
| 315 | <activity android:name="android.content.cts.AvailableIntentsActivity" |
| 316 | android:label="AvailableIntentsActivity"> |
| 317 | <intent-filter> |
| 318 | <action android:name="android.intent.action.MAIN" /> |
| 319 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 320 | </intent-filter> |
| 321 | </activity> |
| 322 | |
| 323 | <activity android:name="android.widget.cts.TableStubActivity" |
| 324 | android:label="TableStubActivity"> |
| 325 | <intent-filter> |
| 326 | <action android:name="android.intent.action.MAIN" /> |
| 327 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 328 | </intent-filter> |
| 329 | </activity> |
| 330 | |
| 331 | <activity android:name="android.view.animation.cts.AnimationTestStubActivity" |
| 332 | android:label="AnimationTestStubActivity"> |
| 333 | <intent-filter> |
| 334 | <action android:name="android.intent.action.MAIN"/> |
| 335 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 336 | </intent-filter> |
| 337 | </activity> |
| 338 | |
Phil Dubach | a97f97f | 2009-05-19 15:05:52 -0700 | [diff] [blame] | 339 | <activity android:name="android.view.animation.cts.GridLayoutAnimStubActivity" |
| 340 | android:label="GridLayoutAnimStubActivity"> |
| 341 | <intent-filter> |
| 342 | <action android:name="android.intent.action.MAIN"/> |
| 343 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 344 | </intent-filter> |
| 345 | </activity> |
| 346 | |
| 347 | <activity android:name="android.view.animation.cts.LayoutAnimStubActivity" |
| 348 | android:label="LayoutAnimStubActivity"> |
| 349 | <intent-filter> |
| 350 | <action android:name="android.intent.action.MAIN"/> |
| 351 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 352 | </intent-filter> |
| 353 | </activity> |
| 354 | |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 355 | <activity android:name="android.widget.cts.ExpandableListSimple" |
| 356 | android:label="ExpandableListSimple"> |
| 357 | <intent-filter> |
| 358 | <action android:name="android.intent.action.MAIN" /> |
| 359 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 360 | </intent-filter> |
| 361 | </activity> |
| 362 | |
Scott Su | 3b57cf7 | 2009-03-24 21:14:33 -0700 | [diff] [blame] | 363 | <activity android:name="android.widget.cts.StubActivity" |
| 364 | android:label="StubActivity"> |
| 365 | <intent-filter> |
| 366 | <action android:name="android.intent.action.MAIN" /> |
| 367 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 368 | </intent-filter> |
| 369 | </activity> |
| 370 | |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 371 | <activity android:name="android.widget.cts.ExpandableListWithHeaders" |
| 372 | android:label="ExpandableListWithHeaders"> |
| 373 | <intent-filter> |
| 374 | <action android:name="android.intent.action.MAIN" /> |
| 375 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 376 | </intent-filter> |
| 377 | </activity> |
| 378 | |
Phil Dubach | 52efeb8 | 2009-05-22 14:13:59 -0700 | [diff] [blame] | 379 | <activity android:name="android.widget.cts.GalleryStubActivity" |
| 380 | android:label="GalleryStubActivity"> |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 381 | <action android:name="android.intent.action.MAIN" /> |
| 382 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 383 | </activity> |
| 384 | |
Phil Dubach | 52efeb8 | 2009-05-22 14:13:59 -0700 | [diff] [blame] | 385 | <activity android:name="android.widget.cts.MockPopupWindowStubActivity" |
| 386 | android:label="MockPopupWindowStubActivity"> |
| 387 | <action android:name="android.intent.action.MAIN" /> |
| 388 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 389 | </activity> |
| 390 | |
| 391 | <activity android:name="android.widget.cts.ListViewStubActivity" |
| 392 | android:label="ListViewStubActivity"> |
Scott Su | c176137 | 2009-04-08 19:55:32 -0700 | [diff] [blame] | 393 | <intent-filter> |
| 394 | <action android:name="android.intent.action.MAIN" /> |
| 395 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 396 | </intent-filter> |
| 397 | </activity> |
| 398 | |
Phil Dubach | 37b5663 | 2009-04-30 17:10:22 -0700 | [diff] [blame] | 399 | <activity android:name="android.widget.cts.TextViewStubActivity" |
| 400 | android:label="TextViewStubActivity"> |
| 401 | <intent-filter> |
| 402 | <action android:name="android.intent.action.MAIN" /> |
| 403 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 404 | </intent-filter> |
| 405 | </activity> |
| 406 | |
Scott Su | 2d8a0a3 | 2009-04-08 20:19:02 -0700 | [diff] [blame] | 407 | <activity android:name="android.widget.cts.MultiAutoCompleteTextViewStubActivity" |
| 408 | android:label="MultiAutoCompleteTextView Test Activity"> |
| 409 | <intent-filter> |
| 410 | <action android:name="android.intent.action.MAIN" /> |
| 411 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 412 | </intent-filter> |
| 413 | </activity> |
| 414 | |
Scott Su | 616c4b5 | 2009-04-09 22:26:28 -0700 | [diff] [blame] | 415 | <activity android:name="android.widget.cts.AdapterViewStubActivity" |
| 416 | android:label="AdapterViewStubActivity"> |
| 417 | <intent-filter> |
| 418 | <action android:name="android.intent.action.MAIN" /> |
| 419 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 420 | </intent-filter> |
| 421 | </activity> |
| 422 | |
Scott Su | f8e6a37 | 2009-04-13 23:25:15 -0700 | [diff] [blame] | 423 | <activity android:name="android.widget.cts.CheckedTextViewStubActivity" |
| 424 | android:label="CheckedTextViewStubActivity"/> |
| 425 | |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 426 | <activity android:name="android.hardware.cts.CameraStubActivity" |
| 427 | android:label="CameraStubActivity" |
| 428 | android:screenOrientation="landscape"> |
| 429 | </activity> |
| 430 | |
Scott Su | 380ec6f | 2009-04-21 00:38:12 -0700 | [diff] [blame] | 431 | <activity android:name="android.view.cts.MenuInflaterStubActivity" |
| 432 | android:label="MenuInflaterStubActivity"> |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 433 | <intent-filter> |
| 434 | <action android:name="android.intent.action.MAIN"/> |
| 435 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 436 | </intent-filter> |
| 437 | </activity> |
| 438 | |
Scott Su | c3a243a | 2009-04-13 19:32:36 -0700 | [diff] [blame] | 439 | <activity android:name="android.text.method.cts.KeyListenerStubActivity" |
| 440 | android:label="KeyListenerStubActivity"/> |
| 441 | |
Scott Su | 3b57cf7 | 2009-03-24 21:14:33 -0700 | [diff] [blame] | 442 | <activity android:name="android.text.method.cts.StubActivity" |
| 443 | android:label="StubActivity"> |
| 444 | <intent-filter> |
| 445 | <action android:name="android.intent.action.MAIN" /> |
| 446 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 447 | </intent-filter> |
| 448 | </activity> |
| 449 | |
Scott Su | 415a96a | 2009-04-07 23:39:19 -0700 | [diff] [blame] | 450 | <activity android:name="android.text.style.cts.URLSpanStubActivity" |
| 451 | android:label="URLSpanStubActivity"> |
| 452 | <intent-filter> |
| 453 | <action android:name="android.intent.action.MAIN" /> |
| 454 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 455 | </intent-filter> |
| 456 | </activity> |
| 457 | |
| 458 | <activity android:name="android.text.style.cts.MockURLSpanTestActivity" |
| 459 | android:label="MockURLSpanTestActivity" |
| 460 | android:launchMode="singleTask" |
| 461 | android:alwaysRetainTaskState="true" |
| 462 | android:configChanges="orientation|keyboardHidden"> |
| 463 | <intent-filter> |
| 464 | <action android:name="android.intent.action.VIEW" /> |
| 465 | <category android:name="android.intent.category.DEFAULT" /> |
| 466 | <category android:name="android.intent.category.BROWSABLE" /> |
| 467 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 468 | <data android:scheme="ctstest" /> |
| 469 | </intent-filter> |
| 470 | </activity> |
| 471 | |
Scott Su | af2427c | 2009-04-10 00:44:46 -0700 | [diff] [blame] | 472 | <activity android:name="android.view.cts.SurfaceViewStubActivity" |
| 473 | android:label="SurfaceViewStubActivity"> |
| 474 | <intent-filter> |
| 475 | <action android:name="android.intent.action.MAIN"/> |
| 476 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 477 | </intent-filter> |
| 478 | </activity> |
| 479 | |
Scott Su | c14a50e | 2009-04-12 22:26:54 -0700 | [diff] [blame] | 480 | <activity android:name="android.app.cts.MockApplicationActivity" |
| 481 | android:label="MockApplicationActivity"> |
| 482 | <intent-filter> |
| 483 | <action android:name="android.intent.action.MAIN"/> |
| 484 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 485 | </intent-filter> |
| 486 | </activity> |
| 487 | |
Scott Su | 58a3e99 | 2009-04-12 23:43:22 -0700 | [diff] [blame] | 488 | <activity android:name="android.app.cts.InstrumentationTestActivity" |
| 489 | android:label="InstrumentationTestActivity"> |
| 490 | <action android:name="android.intent.action.MAIN" /> |
| 491 | <category android:name="android.intent.category.DEFAULT" /> |
| 492 | <data android:mimeType="vnd.android.cursor.dir/person" /> |
| 493 | </activity> |
| 494 | |
Scott Su | 380ec6f | 2009-04-21 00:38:12 -0700 | [diff] [blame] | 495 | <activity android:name="android.app.cts.AliasActivityStub"> |
| 496 | <meta-data android:name="android.app.alias" |
Scott Su | 82de51d | 2009-04-14 01:32:49 -0700 | [diff] [blame] | 497 | android:resource="@xml/alias" /> |
Scott Su | 380ec6f | 2009-04-21 00:38:12 -0700 | [diff] [blame] | 498 | </activity> |
Scott Su | 82de51d | 2009-04-14 01:32:49 -0700 | [diff] [blame] | 499 | |
Scott Su | 380ec6f | 2009-04-21 00:38:12 -0700 | [diff] [blame] | 500 | <activity android:name="android.app.cts.ChildActivity" |
Scott Su | 82de51d | 2009-04-14 01:32:49 -0700 | [diff] [blame] | 501 | android:label="ChildActivity" /> |
Scott Su | 380ec6f | 2009-04-21 00:38:12 -0700 | [diff] [blame] | 502 | |
| 503 | <receiver android:name="android.app.cts.MockReceiver"> |
| 504 | <intent-filter> |
| 505 | <action android:name="android.app.cts.PendingIntentTest.TEST_RECEIVER" /> |
| 506 | </intent-filter> |
| 507 | </receiver> |
| 508 | |
| 509 | <service android:name="android.app.cts.MockService" /> |
| 510 | |
| 511 | <activity android:name="android.app.cts.SearchManagerStubActivity" |
| 512 | android:label="SearchManagerStubActivity" /> |
| 513 | |
| 514 | <service android:name="android.app.cts.LocalService"> |
| 515 | <intent-filter> |
| 516 | <action android:name="android.app.cts.activity.SERVICE_LOCAL" /> |
| 517 | </intent-filter> |
| 518 | <meta-data android:name="android.app.cts.string" android:value="foo" /> |
| 519 | <meta-data android:name="android.app.cts.boolean" android:value="true" /> |
| 520 | <meta-data android:name="android.app.cts.integer" android:value="100" /> |
| 521 | <meta-data android:name="android.app.cts.color" android:value="#ff000000" /> |
| 522 | <meta-data android:name="android.app.cts.float" android:value="100.1" /> |
| 523 | <meta-data android:name="android.app.cts.reference" android:resource="@xml/metadata" /> |
| 524 | </service> |
| 525 | |
| 526 | <service android:name="android.app.cts.LocalGrantedService" |
| 527 | android:permission="android.app.cts.permission.TEST_GRANTED"> |
| 528 | <intent-filter> |
| 529 | <action android:name="android.app.cts.activity.SERVICE_LOCAL_GRANTED" /> |
| 530 | </intent-filter> |
| 531 | </service> |
| 532 | |
| 533 | <service android:name="android.app.cts.LocalDeniedService" |
| 534 | android:permission="android.app.cts.permission.TEST_DENIED"> |
| 535 | <intent-filter> |
| 536 | <action android:name="android.app.cts.activity.SERVICE_LOCAL_DENIED" /> |
| 537 | </intent-filter> |
| 538 | </service> |
| 539 | |
| 540 | <activity android:name="android.app.cts.TestedScreen" |
| 541 | android:process=":remoteScreen"> |
| 542 | </activity> |
| 543 | <activity android:name="android.app.cts.LocalScreen" android:multiprocess="true"> |
| 544 | </activity> |
| 545 | <activity android:name="android.app.cts.ClearTop" android:multiprocess="true" |
| 546 | android:launchMode="singleTop"> |
| 547 | </activity> |
| 548 | <activity android:name="android.app.cts.LocalDialog" android:multiprocess="true" |
| 549 | android:theme="@android:style/Theme.Dialog"> |
| 550 | </activity> |
| 551 | |
| 552 | <activity android:name="android.app.cts.PendingIntentStubActivity" |
| 553 | android:label="PendingIntentStubActivity"/> |
| 554 | |
Scott Su | 2cc27de | 2009-04-23 22:34:06 -0700 | [diff] [blame] | 555 | <activity android:name="android.app.cts.LocalActivityManagerStubActivity" |
| 556 | android:label="LocalActivityManagerStubActivity" /> |
| 557 | |
| 558 | <activity android:name="android.app.cts.LocalActivityManagerTestHelper" |
| 559 | android:label="LocalActivityManagerTestHelper" /> |
| 560 | |
Scott Su | 7c0bdb3 | 2009-04-23 22:54:53 -0700 | [diff] [blame] | 561 | <activity android:name="android.app.cts.LaunchpadTabActivity" android:multiprocess="true"> |
| 562 | </activity> |
| 563 | |
| 564 | <activity android:name="android.app.cts.LocalActivity" android:multiprocess="true"> |
| 565 | <meta-data android:name="android.app.cts.string" android:value="foo" /> |
| 566 | <meta-data android:name="android.app.cts.boolean" android:value="true" /> |
| 567 | <meta-data android:name="android.app.cts.integer" android:value="100" /> |
| 568 | <meta-data android:name="android.app.cts.color" android:value="#ff000000" /> |
| 569 | <meta-data android:name="android.app.cts.float" android:value="100.1" /> |
| 570 | <meta-data android:name="android.app.cts.reference" android:resource="@xml/metadata" /> |
| 571 | </activity> |
| 572 | |
| 573 | <activity android:name="android.app.cts.TestedActivity" |
| 574 | android:process=":remoteActivity"> |
| 575 | </activity> |
| 576 | |
Scott Su | 29aac8d | 2009-04-23 23:13:26 -0700 | [diff] [blame] | 577 | <activity android:name="android.app.cts.ExpandableListTestActivity" |
| 578 | android:label="ExpandableListTestActivity"> |
| 579 | <intent-filter> |
| 580 | <action android:name="android.intent.action.MAIN" /> |
| 581 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 582 | </intent-filter> |
| 583 | </activity> |
| 584 | |
Phil Dubach | 597759f | 2009-05-18 17:14:48 -0700 | [diff] [blame] | 585 | <activity android:name="android.view.cts.FocusFinderStubActivity" |
| 586 | android:label="FocusFinderStubActivity"> |
| 587 | <action android:name="android.intent.action.MAIN" /> |
| 588 | <category android:name="android.intent.category.DEFAULT" /> |
| 589 | </activity> |
| 590 | |
| 591 | <activity android:name="android.view.cts.GestureDetectorStubActivity" |
| 592 | android:label="GestureDetectorStubActivity"/> |
| 593 | |
Scott Su | 42f8f66 | 2009-04-23 23:40:02 -0700 | [diff] [blame] | 594 | <!--Test for PackageManager--> |
| 595 | <activity android:name="android.content.pm.cts.TestPmActivity" |
| 596 | android:icon="@drawable/start"> |
| 597 | <intent-filter> |
| 598 | <action android:name="android.intent.action.PMTEST" /> |
| 599 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 600 | </intent-filter> |
| 601 | <meta-data android:name="android.content.pm.cts.xmltest" android:resource="@xml/pm_test" /> |
| 602 | </activity> |
| 603 | <activity android:name="android.content.pm.cts.TestPmCompare"> |
| 604 | <intent-filter> |
| 605 | <action android:name="android.intent.action.MAIN" /> |
| 606 | <category android:name="android.intent.category.INFO" /> |
| 607 | </intent-filter> |
| 608 | </activity> |
| 609 | <!--Test for PackageManager--> |
| 610 | <service android:name="android.content.pm.cts.TestPmService"> |
| 611 | <intent-filter> |
| 612 | <action android:name="android.content.pm.cts.activity.PMTEST_SERVICE" /> |
| 613 | </intent-filter> |
| 614 | </service> |
| 615 | <!--Test for PackageManager--> |
| 616 | <receiver android:name="android.content.pm.cts.PmTestReceiver"> |
| 617 | <intent-filter> |
| 618 | <action android:name="android.content.pm.cts.PackageManagerTest.PMTEST_RECEIVER" /> |
| 619 | </intent-filter> |
| 620 | </receiver> |
| 621 | |
| 622 | <!-- Used for PackageManager test, don't delete this MockContentProvider provider --> |
| 623 | <provider android:name="android.content.cts.MockContentProvider" android:authorities="ctstest" |
| 624 | android:multiprocess="false" /> |
| 625 | |
Scott Su | 5a76025 | 2009-04-23 23:59:02 -0700 | [diff] [blame] | 626 | <activity android:name="android.app.cts.ChildTabActivity" android:label="ChildTabActivity" /> |
| 627 | |
| 628 | <activity android:name="android.app.cts.LauncherActivityStub" |
| 629 | android:label="LauncherActivityStub" > |
| 630 | <intent-filter> |
| 631 | <action android:name="android.intent.action.MAIN"/> |
| 632 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 633 | </intent-filter> |
| 634 | </activity> |
| 635 | |
| 636 | <activity android:name="android.app.cts.MockTabActivity" android:label="MockTabActivity" /> |
| 637 | |
| 638 | <activity android:name="android.app.cts.AppStubActivity" android:label="AppStubActivity"> |
| 639 | <intent-filter> |
| 640 | <action android:name="android.intent.action.MAIN" /> |
| 641 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 642 | </intent-filter> |
| 643 | </activity> |
| 644 | |
Scott Su | fd27abc | 2009-04-24 00:12:01 -0700 | [diff] [blame] | 645 | <activity android:name="android.app.cts.DialogStubActivity" |
| 646 | android:label="DialogStubActivity"> |
| 647 | <intent-filter> |
| 648 | <action android:name="android.intent.action.MAIN" /> |
| 649 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 650 | </intent-filter> |
| 651 | </activity> |
| 652 | |
Scott Su | f479bb5 | 2009-04-24 00:24:12 -0700 | [diff] [blame] | 653 | <activity android:name="android.app.cts.ActivityManagerStubFooActivity" |
| 654 | android:label="ActivityManagerStubFooActivity"> |
| 655 | <intent-filter> |
| 656 | <action android:name="android.intent.action.MAIN" /> |
| 657 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 658 | </intent-filter> |
| 659 | </activity> |
| 660 | |
| 661 | <activity android:name="android.app.cts.ActivityManagerRecentOneActivity" |
| 662 | android:label="ActivityManagerRecentOneActivity" |
| 663 | android:allowTaskReparenting="true" |
| 664 | android:taskAffinity="android.app.cts.recentOne"> |
| 665 | <intent-filter> |
| 666 | <action android:name="android.intent.action.MAIN" /> |
| 667 | </intent-filter> |
| 668 | </activity> |
| 669 | |
| 670 | <activity android:name="android.app.cts.ActivityManagerRecentTwoActivity" |
| 671 | android:label="ActivityManagerRecentTwoActivity" |
| 672 | android:allowTaskReparenting="true" |
| 673 | android:taskAffinity="android.app.cts.recentTwo"> |
| 674 | <intent-filter> |
| 675 | <action android:name="android.intent.action.MAIN" /> |
| 676 | </intent-filter> |
| 677 | </activity> |
| 678 | |
| 679 | <activity android:name="android.app.cts.ActivityManagerStubCrashActivity" |
| 680 | android:label="ActivityManagerStubCrashActivity" |
| 681 | android:multiprocess="true" |
| 682 | android:process=":ActivityManagerStubCrashActivity"> |
| 683 | <intent-filter> |
| 684 | <action android:name="android.intent.action.MAIN" /> |
| 685 | </intent-filter> |
| 686 | </activity> |
| 687 | |
Scott Su | 60cb930 | 2009-04-24 00:38:37 -0700 | [diff] [blame] | 688 | <service android:name="android.app.cts.StubRemoteService" |
| 689 | android:process=":remote"> |
| 690 | <intent-filter> |
| 691 | <action |
| 692 | android:name="android.app.cts.ISecondary" /> |
| 693 | <action |
| 694 | android:name="android.app.REMOTESERVICE" /> |
| 695 | </intent-filter> |
| 696 | </service> |
| 697 | |
Scott Su | e68a4a1 | 2009-04-24 00:59:06 -0700 | [diff] [blame] | 698 | <activity android:name="android.app.cts.ListActivityTestHelper" |
| 699 | android:label="ListActivityTestHelper" /> |
| 700 | |
Scott Su | a9e8720 | 2009-04-24 01:34:57 -0700 | [diff] [blame] | 701 | <activity android:name="android.app.cts.KeyguardManagerActivity" |
| 702 | android:label="KeyguardManagerActivity"> |
| 703 | <intent-filter> |
| 704 | <action android:name="android.intent.action.MAIN" /> |
| 705 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 706 | </intent-filter> |
| 707 | </activity> |
| 708 | |
Phil Dubach | e512979 | 2009-05-15 16:30:01 -0700 | [diff] [blame] | 709 | <activity android:name="android.os.cts.CountDownTimerTestStub" |
| 710 | android:label="CountDownTimerTestStub"> |
| 711 | <intent-filter> |
| 712 | <action android:name="android.intent.action.MAIN" /> |
| 713 | <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" /> |
| 714 | </intent-filter> |
| 715 | </activity> |
| 716 | |
Scott Su | 810648a | 2009-04-24 01:44:54 -0700 | [diff] [blame] | 717 | <service android:name="android.os.cts.EmptyService" |
| 718 | android:process=":remote"> |
| 719 | <intent-filter> |
| 720 | <action |
| 721 | android:name="android.os.cts.IEmptyService" /> |
| 722 | <action |
| 723 | android:name="android.os.REMOTESERVICE" /> |
| 724 | </intent-filter> |
| 725 | </service> |
| 726 | |
Scott Su | 0aad978 | 2009-04-24 02:50:57 -0700 | [diff] [blame] | 727 | <service android:name="android.os.cts.MessengerService" |
| 728 | android:process=":messengerService"> |
| 729 | </service> |
| 730 | |
Scott Su | b45eaae | 2009-04-30 16:53:23 -0700 | [diff] [blame] | 731 | <activity android:name="android.app.cts.LaunchpadActivity" android:multiprocess="true"> |
| 732 | </activity> |
| 733 | |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 734 | </application> |
| 735 | |
Scott Su | 42f8f66 | 2009-04-23 23:40:02 -0700 | [diff] [blame] | 736 | <!--Test for PackageManager, please put this at the very beginning--> |
| 737 | <instrumentation android:name="android.content.pm.cts.TestPmInstrumentation" |
| 738 | android:targetPackage="android" |
| 739 | android:label="PackageManager Instrumentation Test" /> |
| 740 | |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 741 | </manifest> |
Scott Su | 42f8f66 | 2009-04-23 23:40:02 -0700 | [diff] [blame] | 742 | |