Brian Muramatsu | 70a9e3f | 2010-06-25 15:27:09 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | |
| 3 | <!-- Copyright (C) 2010 The Android Open Source Project |
| 4 | |
| 5 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | you may not use this file except in compliance with the License. |
| 7 | You may obtain a copy of the License at |
Christine Chen | 523d04c | 2011-09-22 11:45:50 -0700 | [diff] [blame] | 8 | |
Brian Muramatsu | 70a9e3f | 2010-06-25 15:27:09 -0700 | [diff] [blame] | 9 | http://www.apache.org/licenses/LICENSE-2.0 |
Christine Chen | 523d04c | 2011-09-22 11:45:50 -0700 | [diff] [blame] | 10 | |
Brian Muramatsu | 70a9e3f | 2010-06-25 15:27:09 -0700 | [diff] [blame] | 11 | Unless required by applicable law or agreed to in writing, software |
| 12 | distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | See the License for the specific language governing permissions and |
| 15 | limitations under the License. |
| 16 | --> |
| 17 | |
| 18 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 19 | package="com.android.cts.verifier" |
Brian Muramatsu | c487b8d | 2011-08-12 15:43:37 -0700 | [diff] [blame] | 20 | android:versionCode="1" |
Unsuk Jung | aa3c74a | 2013-10-02 10:24:27 -0700 | [diff] [blame] | 21 | android:versionName="4.2_r6"> |
Brian Muramatsu | cee4559 | 2011-08-01 14:23:52 -0700 | [diff] [blame] | 22 | |
Unsuk Jung | aa3c74a | 2013-10-02 10:24:27 -0700 | [diff] [blame] | 23 | <!-- Using 10+ for more complete NFC support... --> |
| 24 | <uses-sdk android:minSdkVersion="12"></uses-sdk> |
Brian Muramatsu | 759dbe3 | 2011-02-11 12:59:24 -0800 | [diff] [blame] | 25 | |
Nick Pelly | 1fe0897 | 2012-05-14 17:35:58 -0700 | [diff] [blame] | 26 | <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> |
Yoshihiko Ikenaga | f2bfc97 | 2012-04-11 22:45:03 +0900 | [diff] [blame] | 27 | <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> |
Brian Muramatsu | e891acb | 2011-05-19 16:02:39 -0700 | [diff] [blame] | 28 | <uses-permission android:name="android.permission.BLUETOOTH" /> |
Brian Muramatsu | 713049d | 2011-06-23 18:35:36 -0700 | [diff] [blame] | 29 | <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" /> |
Brian Muramatsu | 1f54980 | 2011-06-09 15:25:28 -0700 | [diff] [blame] | 30 | <uses-permission android:name="android.permission.CAMERA" /> |
Nick Pelly | 1fe0897 | 2012-05-14 17:35:58 -0700 | [diff] [blame] | 31 | <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" /> |
| 32 | <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" /> |
Angus Kong | a021688 | 2013-03-06 17:51:11 -0800 | [diff] [blame] | 33 | <uses-permission android:name="android.permission.FULLSCREEN" /> |
Brian Muramatsu | 55762d9 | 2011-11-21 16:06:19 -0800 | [diff] [blame] | 34 | <uses-permission android:name="android.permission.INTERNET" /> |
Brian Muramatsu | 984b78b | 2011-09-23 12:37:28 -0700 | [diff] [blame] | 35 | <uses-permission android:name="android.permission.NFC" /> |
Christine Chen | 523d04c | 2011-09-22 11:45:50 -0700 | [diff] [blame] | 36 | <uses-feature android:name="android.hardware.camera.front" |
| 37 | android:required="false" /> |
| 38 | <uses-feature android:name="android.hardware.camera.autofocus" |
| 39 | android:required="false" /> |
Angus Kong | a021688 | 2013-03-06 17:51:11 -0800 | [diff] [blame] | 40 | <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> |
Brian Muramatsu | f894620 | 2010-11-09 13:43:39 -0800 | [diff] [blame] | 41 | <uses-permission android:name="android.permission.RECORD_AUDIO" /> |
Brian Muramatsu | 759dbe3 | 2011-02-11 12:59:24 -0800 | [diff] [blame] | 42 | <uses-permission android:name="android.permission.WAKE_LOCK" /> |
Christine Chen | 523d04c | 2011-09-22 11:45:50 -0700 | [diff] [blame] | 43 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
| 44 | <uses-feature android:name="android.hardware.usb.accessory" /> |
Christine Chen | 523d04c | 2011-09-22 11:45:50 -0700 | [diff] [blame] | 45 | |
Brian Muramatsu | 759dbe3 | 2011-02-11 12:59:24 -0800 | [diff] [blame] | 46 | <!-- Needed by the Audio Quality Verifier to store the sound samples that will be mailed. --> |
| 47 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
Brian Muramatsu | 70a9e3f | 2010-06-25 15:27:09 -0700 | [diff] [blame] | 48 | |
Christine Chen | 523d04c | 2011-09-22 11:45:50 -0700 | [diff] [blame] | 49 | <application android:label="@string/app_name" |
Brian Muramatsu | 0ac3cdf | 2011-08-03 11:47:10 -0700 | [diff] [blame] | 50 | android:icon="@drawable/icon" |
Christine Chen | 523d04c | 2011-09-22 11:45:50 -0700 | [diff] [blame] | 51 | android:backupAgent="VerifierBackupAgent" |
Eino-Ville Talvala | e56ae2a | 2012-04-27 19:18:41 -0700 | [diff] [blame] | 52 | android:debuggable="true" |
| 53 | android:largeHeap="true"> |
Christine Chen | 523d04c | 2011-09-22 11:45:50 -0700 | [diff] [blame] | 54 | |
Brian Muramatsu | 0ac3cdf | 2011-08-03 11:47:10 -0700 | [diff] [blame] | 55 | <meta-data android:name="com.google.android.backup.api_key" |
| 56 | android:value="AEdPqrEAAAAIbK6ldcOzoeRtQ1u1dFVJ1A7KetRhit-a1Xa82Q" /> |
Brian Muramatsu | bf8790e | 2010-08-06 11:42:32 -0700 | [diff] [blame] | 57 | |
Brian Muramatsu | 12c8691 | 2011-07-21 17:26:46 -0700 | [diff] [blame] | 58 | <activity android:name=".TestListActivity" android:label="@string/app_name"> |
| 59 | <!-- |
| 60 | TestListActivity will have the USB accessory Test in its test list, but it |
| 61 | does not have any code to handle the USB accessory. The test has to be started |
| 62 | from TestListActivity or the pass/fail status won't be properly recorded. Also |
| 63 | this is to prevent the dialog saying there is no application able to support the |
| 64 | accessory from being shown. |
| 65 | --> |
| 66 | <intent-filter> |
| 67 | <action android:name="android.hardware.usb.action.USB_ACCESSORY_ATTACHED" /> |
| 68 | </intent-filter> |
| 69 | <meta-data android:name="android.hardware.usb.action.USB_ACCESSORY_ATTACHED" |
| 70 | android:resource="@xml/accessory_filter" /> |
| 71 | </activity> |
Brian Muramatsu | e49daa9 | 2011-06-03 14:57:01 -0700 | [diff] [blame] | 72 | |
Brian Muramatsu | 278962c | 2012-01-19 17:37:38 -0800 | [diff] [blame] | 73 | <activity android:name=".ReportViewerActivity" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame] | 74 | android:configChanges="keyboardHidden|orientation|screenSize" |
Brian Muramatsu | 278962c | 2012-01-19 17:37:38 -0800 | [diff] [blame] | 75 | android:label="@string/report_viewer" /> |
| 76 | |
| 77 | <provider android:name=".TestResultsProvider" |
Brian Muramatsu | ac00737 | 2010-08-18 11:02:28 -0700 | [diff] [blame] | 78 | android:authorities="com.android.cts.verifier.testresultsprovider" /> |
Christine Chen | 523d04c | 2011-09-22 11:45:50 -0700 | [diff] [blame] | 79 | |
Brian Muramatsu | 713049d | 2011-06-23 18:35:36 -0700 | [diff] [blame] | 80 | <activity android:name=".admin.PolicySerializationTestActivity" |
| 81 | android:label="@string/da_policy_serialization_test" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame] | 82 | android:configChanges="keyboardHidden|orientation|screenSize"> |
Brian Muramatsu | 713049d | 2011-06-23 18:35:36 -0700 | [diff] [blame] | 83 | <intent-filter> |
| 84 | <action android:name="android.intent.action.MAIN" /> |
| 85 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 86 | </intent-filter> |
| 87 | <meta-data android:name="test_category" android:value="@string/test_category_device_admin" /> |
| 88 | </activity> |
| 89 | |
| 90 | <activity android:name=".admin.ScreenLockTestActivity" |
| 91 | android:label="@string/da_screen_lock_test" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame] | 92 | android:configChanges="keyboardHidden|orientation|screenSize"> |
Brian Muramatsu | 713049d | 2011-06-23 18:35:36 -0700 | [diff] [blame] | 93 | <intent-filter> |
| 94 | <action android:name="android.intent.action.MAIN" /> |
| 95 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 96 | </intent-filter> |
| 97 | <meta-data android:name="test_category" android:value="@string/test_category_device_admin" /> |
| 98 | </activity> |
| 99 | |
| 100 | <receiver android:name=".admin.TestDeviceAdminReceiver" |
| 101 | android:permission="android.permission.BIND_DEVICE_ADMIN"> |
| 102 | <meta-data android:name="android.app.device_admin" |
| 103 | android:resource="@xml/device_admin" /> |
| 104 | <intent-filter> |
| 105 | <action android:name="android.app.action.DEVICE_ADMIN_ENABLED" /> |
| 106 | </intent-filter> |
| 107 | </receiver> |
| 108 | |
Brian Muramatsu | 0ac3cdf | 2011-08-03 11:47:10 -0700 | [diff] [blame] | 109 | <activity android:name=".backup.BackupTestActivity" android:label="@string/backup_test"> |
| 110 | <intent-filter> |
| 111 | <action android:name="android.intent.action.MAIN" /> |
| 112 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 113 | </intent-filter> |
| 114 | </activity> |
| 115 | |
Brian Muramatsu | e891acb | 2011-05-19 16:02:39 -0700 | [diff] [blame] | 116 | <activity android:name=".bluetooth.BluetoothTestActivity" |
| 117 | android:label="@string/bluetooth_test" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame] | 118 | android:configChanges="keyboardHidden|orientation|screenSize"> |
Brian Muramatsu | e891acb | 2011-05-19 16:02:39 -0700 | [diff] [blame] | 119 | <intent-filter> |
| 120 | <action android:name="android.intent.action.MAIN" /> |
| 121 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 122 | </intent-filter> |
| 123 | <meta-data android:name="test_category" android:value="@string/test_category_networking" /> |
Brian Muramatsu | e4b5969 | 2011-09-15 11:09:40 -0700 | [diff] [blame] | 124 | <meta-data android:name="test_required_features" android:value="android.hardware.bluetooth" /> |
Brian Muramatsu | e891acb | 2011-05-19 16:02:39 -0700 | [diff] [blame] | 125 | </activity> |
Christine Chen | 523d04c | 2011-09-22 11:45:50 -0700 | [diff] [blame] | 126 | |
Brian Muramatsu | e891acb | 2011-05-19 16:02:39 -0700 | [diff] [blame] | 127 | <activity android:name=".bluetooth.BluetoothToggleActivity" |
| 128 | android:label="@string/bt_toggle_bluetooth" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame] | 129 | android:configChanges="keyboardHidden|orientation|screenSize"> |
Brian Muramatsu | f942683 | 2011-06-17 15:43:59 -0700 | [diff] [blame] | 130 | <intent-filter> |
| 131 | <action android:name="android.intent.action.MAIN" /> |
| 132 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 133 | </intent-filter> |
| 134 | <meta-data android:name="test_category" android:value="@string/bt_control" /> |
| 135 | <meta-data android:name="test_parent" android:value="com.android.cts.verifier.bluetooth.BluetoothTestActivity" /> |
| 136 | </activity> |
Brian Muramatsu | e891acb | 2011-05-19 16:02:39 -0700 | [diff] [blame] | 137 | |
Brian Muramatsu | f942683 | 2011-06-17 15:43:59 -0700 | [diff] [blame] | 138 | <activity android:name=".bluetooth.SecureServerActivity" |
| 139 | android:label="@string/bt_secure_server" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame] | 140 | android:configChanges="keyboardHidden|orientation|screenSize"> |
Brian Muramatsu | f942683 | 2011-06-17 15:43:59 -0700 | [diff] [blame] | 141 | <intent-filter> |
| 142 | <action android:name="android.intent.action.MAIN" /> |
| 143 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 144 | </intent-filter> |
| 145 | <meta-data android:name="test_category" android:value="@string/bt_device_communication" /> |
| 146 | <meta-data android:name="test_parent" android:value="com.android.cts.verifier.bluetooth.BluetoothTestActivity" /> |
| 147 | </activity> |
Christine Chen | 523d04c | 2011-09-22 11:45:50 -0700 | [diff] [blame] | 148 | |
Brian Muramatsu | f942683 | 2011-06-17 15:43:59 -0700 | [diff] [blame] | 149 | <activity android:name=".bluetooth.InsecureServerActivity" |
| 150 | android:label="@string/bt_insecure_server" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame] | 151 | android:configChanges="keyboardHidden|orientation|screenSize"> |
Brian Muramatsu | f942683 | 2011-06-17 15:43:59 -0700 | [diff] [blame] | 152 | <intent-filter> |
| 153 | <action android:name="android.intent.action.MAIN" /> |
| 154 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 155 | </intent-filter> |
| 156 | <meta-data android:name="test_category" android:value="@string/bt_device_communication" /> |
| 157 | <meta-data android:name="test_parent" android:value="com.android.cts.verifier.bluetooth.BluetoothTestActivity" /> |
| 158 | </activity> |
| 159 | |
| 160 | <activity android:name=".bluetooth.SecureClientActivity" |
| 161 | android:label="@string/bt_secure_client" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame] | 162 | android:configChanges="keyboardHidden|orientation|screenSize"> |
Brian Muramatsu | f942683 | 2011-06-17 15:43:59 -0700 | [diff] [blame] | 163 | <intent-filter> |
| 164 | <action android:name="android.intent.action.MAIN" /> |
| 165 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 166 | </intent-filter> |
| 167 | <meta-data android:name="test_category" android:value="@string/bt_device_communication" /> |
| 168 | <meta-data android:name="test_parent" android:value="com.android.cts.verifier.bluetooth.BluetoothTestActivity" /> |
| 169 | </activity> |
Christine Chen | 523d04c | 2011-09-22 11:45:50 -0700 | [diff] [blame] | 170 | |
Brian Muramatsu | f942683 | 2011-06-17 15:43:59 -0700 | [diff] [blame] | 171 | <activity android:name=".bluetooth.InsecureClientActivity" |
| 172 | android:label="@string/bt_insecure_client" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame] | 173 | android:configChanges="keyboardHidden|orientation|screenSize"> |
Brian Muramatsu | f942683 | 2011-06-17 15:43:59 -0700 | [diff] [blame] | 174 | <intent-filter> |
| 175 | <action android:name="android.intent.action.MAIN" /> |
| 176 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 177 | </intent-filter> |
| 178 | <meta-data android:name="test_category" android:value="@string/bt_device_communication" /> |
| 179 | <meta-data android:name="test_parent" android:value="com.android.cts.verifier.bluetooth.BluetoothTestActivity" /> |
Brian Muramatsu | 0822bf4 | 2011-09-12 12:29:32 -0700 | [diff] [blame] | 180 | </activity> |
| 181 | |
| 182 | <activity android:name=".bluetooth.ConnectionAccessServerActivity" |
| 183 | android:label="@string/bt_connection_access_server" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame] | 184 | android:configChanges="keyboardHidden|orientation|screenSize"> |
Brian Muramatsu | 0822bf4 | 2011-09-12 12:29:32 -0700 | [diff] [blame] | 185 | <intent-filter> |
| 186 | <action android:name="android.intent.action.MAIN" /> |
Brian Muramatsu | 0822bf4 | 2011-09-12 12:29:32 -0700 | [diff] [blame] | 187 | </intent-filter> |
| 188 | <meta-data android:name="test_category" android:value="@string/bt_device_communication" /> |
| 189 | <meta-data android:name="test_parent" android:value="com.android.cts.verifier.bluetooth.BluetoothTestActivity" /> |
| 190 | </activity> |
Christine Chen | 523d04c | 2011-09-22 11:45:50 -0700 | [diff] [blame] | 191 | |
Brian Muramatsu | 0822bf4 | 2011-09-12 12:29:32 -0700 | [diff] [blame] | 192 | <activity android:name=".bluetooth.ConnectionAccessClientActivity" |
| 193 | android:label="@string/bt_connection_access_client" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame] | 194 | android:configChanges="keyboardHidden|orientation|screenSize"> |
Brian Muramatsu | 0822bf4 | 2011-09-12 12:29:32 -0700 | [diff] [blame] | 195 | <intent-filter> |
| 196 | <action android:name="android.intent.action.MAIN" /> |
Brian Muramatsu | 0822bf4 | 2011-09-12 12:29:32 -0700 | [diff] [blame] | 197 | </intent-filter> |
| 198 | <meta-data android:name="test_category" android:value="@string/bt_device_communication" /> |
| 199 | <meta-data android:name="test_parent" android:value="com.android.cts.verifier.bluetooth.BluetoothTestActivity" /> |
| 200 | </activity> |
| 201 | |
Brian Muramatsu | e891acb | 2011-05-19 16:02:39 -0700 | [diff] [blame] | 202 | <activity android:name=".bluetooth.DevicePickerActivity" |
| 203 | android:label="@string/bt_device_picker" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame] | 204 | android:configChanges="keyboardHidden|orientation|screenSize" /> |
Brian Muramatsu | e891acb | 2011-05-19 16:02:39 -0700 | [diff] [blame] | 205 | |
Christine Chen | 523d04c | 2011-09-22 11:45:50 -0700 | [diff] [blame] | 206 | <activity android:name=".suid.SuidFilesActivity" |
Brian Muramatsu | accc684 | 2010-08-11 18:57:27 -0700 | [diff] [blame] | 207 | android:label="@string/suid_files" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame] | 208 | android:configChanges="keyboardHidden|orientation|screenSize"> |
Brian Muramatsu | bf8790e | 2010-08-06 11:42:32 -0700 | [diff] [blame] | 209 | <intent-filter> |
| 210 | <action android:name="android.intent.action.MAIN" /> |
| 211 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 212 | </intent-filter> |
Brian Muramatsu | 78d2c1d | 2010-08-16 15:22:30 -0700 | [diff] [blame] | 213 | <meta-data android:name="test_category" android:value="@string/test_category_security" /> |
Brian Muramatsu | bf8790e | 2010-08-06 11:42:32 -0700 | [diff] [blame] | 214 | </activity> |
| 215 | |
Amith Yamasani | 0e2d6d9 | 2014-02-19 10:13:23 -0800 | [diff] [blame] | 216 | <activity android:name=".security.LockConfirmBypassTest" |
Amith Yamasani | 02c2d64 | 2014-03-10 16:41:30 -0700 | [diff] [blame] | 217 | android:label="@string/lock_confirm_test_title" |
Amith Yamasani | 0e2d6d9 | 2014-02-19 10:13:23 -0800 | [diff] [blame] | 218 | android:configChanges="keyboardHidden|orientation|screenSize" > |
| 219 | <intent-filter> |
| 220 | <action android:name="android.intent.action.MAIN" /> |
| 221 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 222 | </intent-filter> |
| 223 | <meta-data android:name="test_category" android:value="@string/test_category_security" /> |
| 224 | </activity> |
| 225 | |
Jeff Davidson | 112f279 | 2011-08-22 09:46:46 -0700 | [diff] [blame] | 226 | <activity android:name=".streamquality.StreamingVideoActivity" |
| 227 | android:label="@string/streaming_video" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame] | 228 | android:configChanges="keyboardHidden|orientation|screenSize"> |
Jeff Davidson | 112f279 | 2011-08-22 09:46:46 -0700 | [diff] [blame] | 229 | <intent-filter> |
| 230 | <action android:name="android.intent.action.MAIN" /> |
| 231 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 232 | </intent-filter> |
| 233 | <meta-data android:name="test_category" android:value="@string/test_category_streaming" /> |
| 234 | </activity> |
| 235 | |
| 236 | <activity android:name=".streamquality.PlayVideoActivity" |
| 237 | android:label="@string/streaming_video" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame] | 238 | android:configChanges="keyboardHidden|orientation|screenSize" |
Jeff Davidson | 112f279 | 2011-08-22 09:46:46 -0700 | [diff] [blame] | 239 | android:screenOrientation="nosensor" /> |
| 240 | |
Dan Morrill | 5df275b | 2010-08-11 12:19:19 -0700 | [diff] [blame] | 241 | <activity android:name=".features.FeatureSummaryActivity" android:label="@string/feature_summary"> |
| 242 | <intent-filter> |
| 243 | <action android:name="android.intent.action.MAIN" /> |
| 244 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 245 | </intent-filter> |
Brian Muramatsu | 78d2c1d | 2010-08-16 15:22:30 -0700 | [diff] [blame] | 246 | <meta-data android:name="test_category" android:value="@string/test_category_features" /> |
Dan Morrill | 5df275b | 2010-08-11 12:19:19 -0700 | [diff] [blame] | 247 | </activity> |
Brian Muramatsu | 70a9e3f | 2010-06-25 15:27:09 -0700 | [diff] [blame] | 248 | |
Nick Pelly | 1fe0897 | 2012-05-14 17:35:58 -0700 | [diff] [blame] | 249 | <activity android:name=".location.GpsTestActivity" |
| 250 | android:label="@string/location_gps_test" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame] | 251 | android:configChanges="keyboardHidden|orientation|screenSize"> |
Nick Pelly | 1fe0897 | 2012-05-14 17:35:58 -0700 | [diff] [blame] | 252 | <intent-filter> |
| 253 | <action android:name="android.intent.action.MAIN" /> |
| 254 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 255 | </intent-filter> |
| 256 | <meta-data android:name="test_category" android:value="@string/test_category_hardware" /> |
| 257 | <meta-data android:name="test_required_features" android:value="android.hardware.location.gps" /> |
| 258 | </activity> |
| 259 | |
Brian Muramatsu | 984b78b | 2011-09-23 12:37:28 -0700 | [diff] [blame] | 260 | <activity android:name=".nfc.NfcTestActivity" |
| 261 | android:label="@string/nfc_test" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame] | 262 | android:configChanges="keyboardHidden|orientation|screenSize"> |
Brian Muramatsu | 984b78b | 2011-09-23 12:37:28 -0700 | [diff] [blame] | 263 | <intent-filter> |
| 264 | <action android:name="android.intent.action.MAIN" /> |
| 265 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 266 | </intent-filter> |
| 267 | <meta-data android:name="test_category" android:value="@string/test_category_hardware" /> |
| 268 | <meta-data android:name="test_required_features" android:value="android.hardware.nfc" /> |
| 269 | </activity> |
| 270 | |
| 271 | <activity android:name=".nfc.NdefPushSenderActivity" |
| 272 | android:label="@string/nfc_ndef_push_sender" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame] | 273 | android:configChanges="keyboardHidden|orientation|screenSize" /> |
Brian Muramatsu | 984b78b | 2011-09-23 12:37:28 -0700 | [diff] [blame] | 274 | |
| 275 | <activity android:name=".nfc.NdefPushReceiverActivity" |
| 276 | android:label="@string/nfc_ndef_push_receiver" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame] | 277 | android:configChanges="keyboardHidden|orientation|screenSize" /> |
Brian Muramatsu | 984b78b | 2011-09-23 12:37:28 -0700 | [diff] [blame] | 278 | |
| 279 | <activity android:name=".nfc.TagVerifierActivity" |
| 280 | android:label="@string/nfc_tag_verifier" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame] | 281 | android:configChanges="keyboardHidden|orientation|screenSize" /> |
Brian Muramatsu | 984b78b | 2011-09-23 12:37:28 -0700 | [diff] [blame] | 282 | |
Dan Morrill | 5df275b | 2010-08-11 12:19:19 -0700 | [diff] [blame] | 283 | <activity android:name=".sensors.AccelerometerTestActivity" android:label="@string/snsr_accel_test" |
Brian Muramatsu | 759dbe3 | 2011-02-11 12:59:24 -0800 | [diff] [blame] | 284 | android:screenOrientation="nosensor"> |
Dan Morrill | 5df275b | 2010-08-11 12:19:19 -0700 | [diff] [blame] | 285 | <intent-filter> |
| 286 | <action android:name="android.intent.action.MAIN" /> |
| 287 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 288 | </intent-filter> |
Brian Muramatsu | 78d2c1d | 2010-08-16 15:22:30 -0700 | [diff] [blame] | 289 | <meta-data android:name="test_category" android:value="@string/test_category_sensors" /> |
Brian Muramatsu | e4b5969 | 2011-09-15 11:09:40 -0700 | [diff] [blame] | 290 | <meta-data android:name="test_required_features" android:value="android.hardware.sensor.accelerometer" /> |
Dan Morrill | 5df275b | 2010-08-11 12:19:19 -0700 | [diff] [blame] | 291 | </activity> |
Dan Morrill | 98c56e6 | 2010-08-13 02:43:52 -0700 | [diff] [blame] | 292 | |
Brian Muramatsu | 729de48 | 2011-05-12 12:26:58 -0700 | [diff] [blame] | 293 | <activity android:name=".sensors.GyroscopeTestActivity" android:label="@string/snsr_gyro_test" |
| 294 | android:screenOrientation="nosensor"> |
| 295 | <intent-filter> |
| 296 | <action android:name="android.intent.action.MAIN" /> |
| 297 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 298 | </intent-filter> |
| 299 | <meta-data android:name="test_category" android:value="@string/test_category_sensors" /> |
Brian Muramatsu | e4b5969 | 2011-09-15 11:09:40 -0700 | [diff] [blame] | 300 | <meta-data android:name="test_required_features" android:value="android.hardware.sensor.gyroscope" /> |
Brian Muramatsu | 729de48 | 2011-05-12 12:26:58 -0700 | [diff] [blame] | 301 | </activity> |
| 302 | |
Eino-Ville Talvala | e56ae2a | 2012-04-27 19:18:41 -0700 | [diff] [blame] | 303 | <activity android:name=".camera.formats.CameraFormatsActivity" |
| 304 | android:label="@string/camera_format" |
| 305 | android:screenOrientation="landscape"> |
| 306 | <intent-filter> |
| 307 | <action android:name="android.intent.action.MAIN" /> |
| 308 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 309 | </intent-filter> |
| 310 | <meta-data android:name="test_category" android:value="@string/test_category_camera" /> |
| 311 | |
Eino-Ville Talvala | 4c86a54 | 2012-09-23 10:12:24 -0700 | [diff] [blame] | 312 | <meta-data android:name="test_required_features" android:value="android.hardware.camera.any"/> |
Eino-Ville Talvala | e56ae2a | 2012-04-27 19:18:41 -0700 | [diff] [blame] | 313 | </activity> |
Eino-Ville Talvala | 754df96 | 2012-09-18 13:53:13 -0700 | [diff] [blame] | 314 | <!-- Experimental |
Brian Muramatsu | 1f54980 | 2011-06-09 15:25:28 -0700 | [diff] [blame] | 315 | <activity android:name=".camera.analyzer.CameraAnalyzerActivity" |
Christine Chen | 523d04c | 2011-09-22 11:45:50 -0700 | [diff] [blame] | 316 | android:label="@string/camera_analyzer" |
| 317 | android:screenOrientation="landscape"> |
Brian Muramatsu | 1f54980 | 2011-06-09 15:25:28 -0700 | [diff] [blame] | 318 | <intent-filter> |
| 319 | <action android:name="android.intent.action.MAIN" /> |
| 320 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 321 | </intent-filter> |
| 322 | <meta-data android:name="test_category" android:value="@string/test_category_camera" /> |
Christine Chen | 523d04c | 2011-09-22 11:45:50 -0700 | [diff] [blame] | 323 | |
| 324 | <intent-filter> |
| 325 | <action android:name="android.hardware.usb.action.USB_ACCESSORY_ATTACHED" /> |
| 326 | </intent-filter> |
| 327 | <meta-data android:name="android.hardware.usb.action.USB_ACCESSORY_ATTACHED" |
| 328 | android:resource="@xml/accessory_filter_adk" /> |
Brian Muramatsu | 1f54980 | 2011-06-09 15:25:28 -0700 | [diff] [blame] | 329 | </activity> |
Eino-Ville Talvala | 754df96 | 2012-09-18 13:53:13 -0700 | [diff] [blame] | 330 | --> |
James Painter | fa2e166 | 2012-09-13 15:37:58 -0700 | [diff] [blame] | 331 | |
Igor Murashkin | 48f86e7 | 2012-10-17 18:12:59 -0700 | [diff] [blame] | 332 | <activity android:name=".camera.intents.CameraIntentsActivity" |
| 333 | android:label="@string/camera_intents"> |
| 334 | <intent-filter> |
| 335 | <action android:name="android.intent.action.MAIN" /> |
| 336 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 337 | </intent-filter> |
| 338 | <meta-data android:name="test_category" android:value="@string/test_category_camera" /> |
| 339 | |
| 340 | <meta-data android:name="test_required_features" android:value="android.hardware.camera.any"/> |
| 341 | </activity> |
| 342 | |
James Painter | fa2e166 | 2012-09-13 15:37:58 -0700 | [diff] [blame] | 343 | <activity android:name=".camera.orientation.CameraOrientationActivity" |
| 344 | android:label="@string/camera_orientation" |
| 345 | android:screenOrientation="landscape"> |
| 346 | <intent-filter> |
| 347 | <action android:name="android.intent.action.MAIN" /> |
| 348 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 349 | </intent-filter> |
| 350 | <meta-data android:name="test_category" android:value="@string/test_category_camera" /> |
| 351 | |
Eino-Ville Talvala | 4c86a54 | 2012-09-23 10:12:24 -0700 | [diff] [blame] | 352 | <meta-data android:name="test_required_features" android:value="android.hardware.camera.any"/> |
James Painter | fa2e166 | 2012-09-13 15:37:58 -0700 | [diff] [blame] | 353 | </activity> |
| 354 | |
Angus Kong | a021688 | 2013-03-06 17:51:11 -0800 | [diff] [blame] | 355 | <activity |
| 356 | android:name=".camera.fov.PhotoCaptureActivity" |
| 357 | android:label="@string/camera_fov_calibration" |
| 358 | android:screenOrientation="landscape" |
| 359 | android:theme="@android:style/Theme.Holo.NoActionBar.Fullscreen" > |
| 360 | <intent-filter android:label="@string/camera_fov_calibration" > |
| 361 | <action android:name="android.intent.action.MAIN" /> |
| 362 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 363 | </intent-filter> |
| 364 | <meta-data android:name="test_category" android:value="@string/test_category_camera" /> |
| 365 | <meta-data android:name="test_required_features" android:value="android.hardware.sensor.gyroscope" /> |
Keijiro Yano | 16f780c | 2013-04-18 17:00:39 +0900 | [diff] [blame] | 366 | <meta-data android:name="test_required_features" android:value="android.hardware.camera"/> |
Angus Kong | a021688 | 2013-03-06 17:51:11 -0800 | [diff] [blame] | 367 | </activity> |
| 368 | <activity |
| 369 | android:name=".camera.fov.DetermineFovActivity" |
| 370 | android:label="@string/camera_fov_calibration" |
| 371 | android:screenOrientation="landscape" |
| 372 | android:theme="@android:style/Theme.Holo.NoActionBar.Fullscreen" > |
| 373 | </activity> |
| 374 | <activity |
| 375 | android:name=".camera.fov.CalibrationPreferenceActivity" |
| 376 | android:label="@string/camera_fov_label_options" > |
| 377 | </activity> |
| 378 | |
Brian Muramatsu | 12c8691 | 2011-07-21 17:26:46 -0700 | [diff] [blame] | 379 | <activity android:name=".usb.UsbAccessoryTestActivity" |
| 380 | android:label="@string/usb_accessory_test" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame] | 381 | android:configChanges="keyboardHidden|orientation|screenSize"> |
Brian Muramatsu | 12c8691 | 2011-07-21 17:26:46 -0700 | [diff] [blame] | 382 | <intent-filter> |
| 383 | <action android:name="android.intent.action.MAIN" /> |
| 384 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 385 | </intent-filter> |
| 386 | <meta-data android:name="test_category" android:value="@string/test_category_hardware" /> |
Brian Muramatsu | d4aea14 | 2011-09-20 17:23:22 -0700 | [diff] [blame] | 387 | <meta-data android:name="test_required_features" android:value="android.hardware.usb.accessory" /> |
Brian Muramatsu | 12c8691 | 2011-07-21 17:26:46 -0700 | [diff] [blame] | 388 | </activity> |
| 389 | |
Yoshihiko Ikenaga | f2bfc97 | 2012-04-11 22:45:03 +0900 | [diff] [blame] | 390 | <activity android:name=".p2p.P2pTestListActivity" |
| 391 | android:label="@string/p2p_test" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame] | 392 | android:configChanges="keyboardHidden|orientation|screenSize"> |
Yoshihiko Ikenaga | f2bfc97 | 2012-04-11 22:45:03 +0900 | [diff] [blame] | 393 | <intent-filter> |
| 394 | <action android:name="android.intent.action.MAIN" /> |
| 395 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 396 | </intent-filter> |
| 397 | <meta-data android:name="test_category" android:value="@string/test_category_networking" /> |
| 398 | <meta-data android:name="test_required_features" android:value="android.hardware.wifi.direct" /> |
| 399 | </activity> |
| 400 | |
Yoshihiko Ikenaga | 395214c | 2012-05-10 20:19:35 +0900 | [diff] [blame] | 401 | <activity android:name=".p2p.GoNegRequesterTestListActivity" |
| 402 | android:label="@string/p2p_go_neg_requester" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame] | 403 | android:configChanges="keyboardHidden|orientation|screenSize" /> |
Yoshihiko Ikenaga | 395214c | 2012-05-10 20:19:35 +0900 | [diff] [blame] | 404 | |
| 405 | <activity android:name=".p2p.GoNegRequesterTestActivity" |
| 406 | android:label="@string/p2p_go_neg_requester" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame] | 407 | android:configChanges="keyboardHidden|orientation|screenSize" /> |
Yoshihiko Ikenaga | 395214c | 2012-05-10 20:19:35 +0900 | [diff] [blame] | 408 | |
| 409 | <activity android:name=".p2p.GoNegResponderTestActivity" |
| 410 | android:label="@string/p2p_go_neg_responder" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame] | 411 | android:configChanges="keyboardHidden|orientation|screenSize" /> |
Yoshihiko Ikenaga | 395214c | 2012-05-10 20:19:35 +0900 | [diff] [blame] | 412 | |
| 413 | <activity android:name=".p2p.P2pClientTestListActivity" |
| 414 | android:label="@string/p2p_join_go" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame] | 415 | android:configChanges="keyboardHidden|orientation|screenSize" /> |
Yoshihiko Ikenaga | 395214c | 2012-05-10 20:19:35 +0900 | [diff] [blame] | 416 | |
| 417 | <activity android:name=".p2p.P2pClientTestActivity" |
| 418 | android:label="@string/p2p_join_go" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame] | 419 | android:configChanges="keyboardHidden|orientation|screenSize" /> |
Yoshihiko Ikenaga | 395214c | 2012-05-10 20:19:35 +0900 | [diff] [blame] | 420 | |
| 421 | <activity android:name=".p2p.GoTestActivity" |
| 422 | android:label="@string/p2p_accept_client" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame] | 423 | android:configChanges="keyboardHidden|orientation|screenSize" /> |
Yoshihiko Ikenaga | 395214c | 2012-05-10 20:19:35 +0900 | [diff] [blame] | 424 | |
Yoshihiko Ikenaga | f2bfc97 | 2012-04-11 22:45:03 +0900 | [diff] [blame] | 425 | <activity android:name=".p2p.ServiceRequesterTestListActivity" |
| 426 | android:label="@string/p2p_service_discovery_requester" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame] | 427 | android:configChanges="keyboardHidden|orientation|screenSize" /> |
Yoshihiko Ikenaga | f2bfc97 | 2012-04-11 22:45:03 +0900 | [diff] [blame] | 428 | |
| 429 | <activity android:name=".p2p.ServiceRequesterTestActivity" |
| 430 | android:label="@string/p2p_service_discovery_requester" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame] | 431 | android:configChanges="keyboardHidden|orientation|screenSize" /> |
Yoshihiko Ikenaga | f2bfc97 | 2012-04-11 22:45:03 +0900 | [diff] [blame] | 432 | |
| 433 | <activity android:name=".p2p.ServiceResponderTestActivity" |
| 434 | android:label="@string/p2p_service_discovery_responder" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame] | 435 | android:configChanges="keyboardHidden|orientation|screenSize" /> |
Yoshihiko Ikenaga | f2bfc97 | 2012-04-11 22:45:03 +0900 | [diff] [blame] | 436 | |
Brian Muramatsu | da429d7 | 2012-06-14 12:45:22 -0700 | [diff] [blame] | 437 | <activity-alias android:name=".CtsVerifierActivity" android:label="@string/app_name" |
| 438 | android:targetActivity=".TestListActivity"> |
| 439 | <intent-filter> |
| 440 | <action android:name="android.intent.action.MAIN" /> |
| 441 | <category android:name="android.intent.category.LAUNCHER" /> |
| 442 | </intent-filter> |
| 443 | </activity-alias> |
| 444 | |
Adam Cohen | 8ae9670 | 2013-05-17 14:21:23 -0700 | [diff] [blame] | 445 | <activity android:name=".widget.WidgetTestActivity" |
| 446 | android:label="@string/widget_framework_test"> |
| 447 | <intent-filter> |
| 448 | <action android:name="android.intent.action.MAIN" /> |
| 449 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 450 | </intent-filter> |
| 451 | <meta-data android:name="test_category" android:value="@string/test_category_other" /> |
| 452 | </activity> |
| 453 | |
| 454 | <receiver android:name=".widget.WidgetCtsProvider"> |
| 455 | <intent-filter> |
| 456 | <action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> |
| 457 | </intent-filter> |
| 458 | <!-- This specifies the widget provider info --> |
| 459 | <meta-data android:name="android.appwidget.provider" |
| 460 | android:resource="@xml/widget_info" /> |
| 461 | </receiver> |
| 462 | |
| 463 | <!-- The service serving the RemoteViews to the collection widget --> |
| 464 | <service android:name=".widget.WidgetCtsService" |
| 465 | android:permission="android.permission.BIND_REMOTEVIEWS" |
| 466 | android:exported="false" /> |
| 467 | |
Brian Muramatsu | f894620 | 2010-11-09 13:43:39 -0800 | [diff] [blame] | 468 | </application> |
| 469 | |
Christine Chen | 523d04c | 2011-09-22 11:45:50 -0700 | [diff] [blame] | 470 | </manifest> |