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