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