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