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" |
Brian Muramatsu | c45972a | 2011-08-30 16:06:33 -0700 | [diff] [blame] | 21 | android:versionName="1337"> |
Brian Muramatsu | cee4559 | 2011-08-01 14:23:52 -0700 | [diff] [blame] | 22 | |
Brian Muramatsu | 984b78b | 2011-09-23 12:37:28 -0700 | [diff] [blame] | 23 | <!-- Using 10 for more complete NFC support... --> |
| 24 | <uses-sdk android:minSdkVersion="10"></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" /> |
Brian Muramatsu | 55762d9 | 2011-11-21 16:06:19 -0800 | [diff] [blame] | 33 | <uses-permission android:name="android.permission.INTERNET" /> |
Brian Muramatsu | 984b78b | 2011-09-23 12:37:28 -0700 | [diff] [blame] | 34 | <uses-permission android:name="android.permission.NFC" /> |
Christine Chen | 523d04c | 2011-09-22 11:45:50 -0700 | [diff] [blame] | 35 | <uses-feature android:name="android.hardware.camera.front" |
| 36 | android:required="false" /> |
| 37 | <uses-feature android:name="android.hardware.camera.autofocus" |
| 38 | android:required="false" /> |
Brian Muramatsu | f894620 | 2010-11-09 13:43:39 -0800 | [diff] [blame] | 39 | <uses-permission android:name="android.permission.RECORD_AUDIO" /> |
Brian Muramatsu | 759dbe3 | 2011-02-11 12:59:24 -0800 | [diff] [blame] | 40 | <uses-permission android:name="android.permission.WAKE_LOCK" /> |
Christine Chen | 523d04c | 2011-09-22 11:45:50 -0700 | [diff] [blame] | 41 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
| 42 | <uses-feature android:name="android.hardware.usb.accessory" /> |
Christine Chen | 523d04c | 2011-09-22 11:45:50 -0700 | [diff] [blame] | 43 | |
Brian Muramatsu | 759dbe3 | 2011-02-11 12:59:24 -0800 | [diff] [blame] | 44 | <!-- Needed by the Audio Quality Verifier to store the sound samples that will be mailed. --> |
| 45 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
Brian Muramatsu | 70a9e3f | 2010-06-25 15:27:09 -0700 | [diff] [blame] | 46 | |
Christine Chen | 523d04c | 2011-09-22 11:45:50 -0700 | [diff] [blame] | 47 | <application android:label="@string/app_name" |
Brian Muramatsu | 0ac3cdf | 2011-08-03 11:47:10 -0700 | [diff] [blame] | 48 | android:icon="@drawable/icon" |
Christine Chen | 523d04c | 2011-09-22 11:45:50 -0700 | [diff] [blame] | 49 | android:backupAgent="VerifierBackupAgent" |
Eino-Ville Talvala | e56ae2a | 2012-04-27 19:18:41 -0700 | [diff] [blame] | 50 | android:debuggable="true" |
| 51 | android:largeHeap="true"> |
Christine Chen | 523d04c | 2011-09-22 11:45:50 -0700 | [diff] [blame] | 52 | |
| 53 | <uses-library android:name="com.android.future.usb.accessory" /> |
Brian Muramatsu | 0ac3cdf | 2011-08-03 11:47:10 -0700 | [diff] [blame] | 54 | <meta-data android:name="com.google.android.backup.api_key" |
| 55 | android:value="AEdPqrEAAAAIbK6ldcOzoeRtQ1u1dFVJ1A7KetRhit-a1Xa82Q" /> |
Brian Muramatsu | bf8790e | 2010-08-06 11:42:32 -0700 | [diff] [blame] | 56 | |
Brian Muramatsu | 12c8691 | 2011-07-21 17:26:46 -0700 | [diff] [blame] | 57 | <activity android:name=".TestListActivity" android:label="@string/app_name"> |
| 58 | <!-- |
| 59 | TestListActivity will have the USB accessory Test in its test list, but it |
| 60 | does not have any code to handle the USB accessory. The test has to be started |
| 61 | from TestListActivity or the pass/fail status won't be properly recorded. Also |
| 62 | this is to prevent the dialog saying there is no application able to support the |
| 63 | accessory from being shown. |
| 64 | --> |
| 65 | <intent-filter> |
| 66 | <action android:name="android.hardware.usb.action.USB_ACCESSORY_ATTACHED" /> |
| 67 | </intent-filter> |
| 68 | <meta-data android:name="android.hardware.usb.action.USB_ACCESSORY_ATTACHED" |
| 69 | android:resource="@xml/accessory_filter" /> |
| 70 | </activity> |
Brian Muramatsu | e49daa9 | 2011-06-03 14:57:01 -0700 | [diff] [blame] | 71 | |
Brian Muramatsu | 278962c | 2012-01-19 17:37:38 -0800 | [diff] [blame] | 72 | <activity android:name=".ReportViewerActivity" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame^] | 73 | android:configChanges="keyboardHidden|orientation|screenSize" |
Brian Muramatsu | 278962c | 2012-01-19 17:37:38 -0800 | [diff] [blame] | 74 | android:label="@string/report_viewer" /> |
| 75 | |
| 76 | <provider android:name=".TestResultsProvider" |
Brian Muramatsu | ac00737 | 2010-08-18 11:02:28 -0700 | [diff] [blame] | 77 | android:authorities="com.android.cts.verifier.testresultsprovider" /> |
Christine Chen | 523d04c | 2011-09-22 11:45:50 -0700 | [diff] [blame] | 78 | |
Brian Muramatsu | 713049d | 2011-06-23 18:35:36 -0700 | [diff] [blame] | 79 | <activity android:name=".admin.PolicySerializationTestActivity" |
| 80 | android:label="@string/da_policy_serialization_test" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame^] | 81 | android:configChanges="keyboardHidden|orientation|screenSize"> |
Brian Muramatsu | 713049d | 2011-06-23 18:35:36 -0700 | [diff] [blame] | 82 | <intent-filter> |
| 83 | <action android:name="android.intent.action.MAIN" /> |
| 84 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 85 | </intent-filter> |
| 86 | <meta-data android:name="test_category" android:value="@string/test_category_device_admin" /> |
| 87 | </activity> |
| 88 | |
| 89 | <activity android:name=".admin.ScreenLockTestActivity" |
| 90 | android:label="@string/da_screen_lock_test" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame^] | 91 | android:configChanges="keyboardHidden|orientation|screenSize"> |
Brian Muramatsu | 713049d | 2011-06-23 18:35:36 -0700 | [diff] [blame] | 92 | <intent-filter> |
| 93 | <action android:name="android.intent.action.MAIN" /> |
| 94 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 95 | </intent-filter> |
| 96 | <meta-data android:name="test_category" android:value="@string/test_category_device_admin" /> |
| 97 | </activity> |
| 98 | |
| 99 | <receiver android:name=".admin.TestDeviceAdminReceiver" |
| 100 | android:permission="android.permission.BIND_DEVICE_ADMIN"> |
| 101 | <meta-data android:name="android.app.device_admin" |
| 102 | android:resource="@xml/device_admin" /> |
| 103 | <intent-filter> |
| 104 | <action android:name="android.app.action.DEVICE_ADMIN_ENABLED" /> |
| 105 | </intent-filter> |
| 106 | </receiver> |
| 107 | |
Brian Muramatsu | 0ac3cdf | 2011-08-03 11:47:10 -0700 | [diff] [blame] | 108 | <activity android:name=".backup.BackupTestActivity" android:label="@string/backup_test"> |
| 109 | <intent-filter> |
| 110 | <action android:name="android.intent.action.MAIN" /> |
| 111 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 112 | </intent-filter> |
| 113 | </activity> |
| 114 | |
Brian Muramatsu | e891acb | 2011-05-19 16:02:39 -0700 | [diff] [blame] | 115 | <activity android:name=".bluetooth.BluetoothTestActivity" |
| 116 | android:label="@string/bluetooth_test" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame^] | 117 | android:configChanges="keyboardHidden|orientation|screenSize"> |
Brian Muramatsu | e891acb | 2011-05-19 16:02:39 -0700 | [diff] [blame] | 118 | <intent-filter> |
| 119 | <action android:name="android.intent.action.MAIN" /> |
| 120 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 121 | </intent-filter> |
| 122 | <meta-data android:name="test_category" android:value="@string/test_category_networking" /> |
Brian Muramatsu | e4b5969 | 2011-09-15 11:09:40 -0700 | [diff] [blame] | 123 | <meta-data android:name="test_required_features" android:value="android.hardware.bluetooth" /> |
Brian Muramatsu | e891acb | 2011-05-19 16:02:39 -0700 | [diff] [blame] | 124 | </activity> |
Christine Chen | 523d04c | 2011-09-22 11:45:50 -0700 | [diff] [blame] | 125 | |
Brian Muramatsu | e891acb | 2011-05-19 16:02:39 -0700 | [diff] [blame] | 126 | <activity android:name=".bluetooth.BluetoothToggleActivity" |
| 127 | android:label="@string/bt_toggle_bluetooth" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame^] | 128 | android:configChanges="keyboardHidden|orientation|screenSize"> |
Brian Muramatsu | f942683 | 2011-06-17 15:43:59 -0700 | [diff] [blame] | 129 | <intent-filter> |
| 130 | <action android:name="android.intent.action.MAIN" /> |
| 131 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 132 | </intent-filter> |
| 133 | <meta-data android:name="test_category" android:value="@string/bt_control" /> |
| 134 | <meta-data android:name="test_parent" android:value="com.android.cts.verifier.bluetooth.BluetoothTestActivity" /> |
| 135 | </activity> |
Brian Muramatsu | e891acb | 2011-05-19 16:02:39 -0700 | [diff] [blame] | 136 | |
Brian Muramatsu | f942683 | 2011-06-17 15:43:59 -0700 | [diff] [blame] | 137 | <activity android:name=".bluetooth.SecureServerActivity" |
| 138 | android:label="@string/bt_secure_server" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame^] | 139 | android:configChanges="keyboardHidden|orientation|screenSize"> |
Brian Muramatsu | f942683 | 2011-06-17 15:43:59 -0700 | [diff] [blame] | 140 | <intent-filter> |
| 141 | <action android:name="android.intent.action.MAIN" /> |
| 142 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 143 | </intent-filter> |
| 144 | <meta-data android:name="test_category" android:value="@string/bt_device_communication" /> |
| 145 | <meta-data android:name="test_parent" android:value="com.android.cts.verifier.bluetooth.BluetoothTestActivity" /> |
| 146 | </activity> |
Christine Chen | 523d04c | 2011-09-22 11:45:50 -0700 | [diff] [blame] | 147 | |
Brian Muramatsu | f942683 | 2011-06-17 15:43:59 -0700 | [diff] [blame] | 148 | <activity android:name=".bluetooth.InsecureServerActivity" |
| 149 | android:label="@string/bt_insecure_server" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame^] | 150 | android:configChanges="keyboardHidden|orientation|screenSize"> |
Brian Muramatsu | f942683 | 2011-06-17 15:43:59 -0700 | [diff] [blame] | 151 | <intent-filter> |
| 152 | <action android:name="android.intent.action.MAIN" /> |
| 153 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 154 | </intent-filter> |
| 155 | <meta-data android:name="test_category" android:value="@string/bt_device_communication" /> |
| 156 | <meta-data android:name="test_parent" android:value="com.android.cts.verifier.bluetooth.BluetoothTestActivity" /> |
| 157 | </activity> |
| 158 | |
| 159 | <activity android:name=".bluetooth.SecureClientActivity" |
| 160 | android:label="@string/bt_secure_client" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame^] | 161 | android:configChanges="keyboardHidden|orientation|screenSize"> |
Brian Muramatsu | f942683 | 2011-06-17 15:43:59 -0700 | [diff] [blame] | 162 | <intent-filter> |
| 163 | <action android:name="android.intent.action.MAIN" /> |
| 164 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 165 | </intent-filter> |
| 166 | <meta-data android:name="test_category" android:value="@string/bt_device_communication" /> |
| 167 | <meta-data android:name="test_parent" android:value="com.android.cts.verifier.bluetooth.BluetoothTestActivity" /> |
| 168 | </activity> |
Christine Chen | 523d04c | 2011-09-22 11:45:50 -0700 | [diff] [blame] | 169 | |
Brian Muramatsu | f942683 | 2011-06-17 15:43:59 -0700 | [diff] [blame] | 170 | <activity android:name=".bluetooth.InsecureClientActivity" |
| 171 | android:label="@string/bt_insecure_client" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame^] | 172 | android:configChanges="keyboardHidden|orientation|screenSize"> |
Brian Muramatsu | f942683 | 2011-06-17 15:43:59 -0700 | [diff] [blame] | 173 | <intent-filter> |
| 174 | <action android:name="android.intent.action.MAIN" /> |
| 175 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 176 | </intent-filter> |
| 177 | <meta-data android:name="test_category" android:value="@string/bt_device_communication" /> |
| 178 | <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] | 179 | </activity> |
| 180 | |
| 181 | <activity android:name=".bluetooth.ConnectionAccessServerActivity" |
| 182 | android:label="@string/bt_connection_access_server" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame^] | 183 | android:configChanges="keyboardHidden|orientation|screenSize"> |
Brian Muramatsu | 0822bf4 | 2011-09-12 12:29:32 -0700 | [diff] [blame] | 184 | <intent-filter> |
| 185 | <action android:name="android.intent.action.MAIN" /> |
Brian Muramatsu | 0822bf4 | 2011-09-12 12:29:32 -0700 | [diff] [blame] | 186 | </intent-filter> |
| 187 | <meta-data android:name="test_category" android:value="@string/bt_device_communication" /> |
| 188 | <meta-data android:name="test_parent" android:value="com.android.cts.verifier.bluetooth.BluetoothTestActivity" /> |
| 189 | </activity> |
Christine Chen | 523d04c | 2011-09-22 11:45:50 -0700 | [diff] [blame] | 190 | |
Brian Muramatsu | 0822bf4 | 2011-09-12 12:29:32 -0700 | [diff] [blame] | 191 | <activity android:name=".bluetooth.ConnectionAccessClientActivity" |
| 192 | android:label="@string/bt_connection_access_client" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame^] | 193 | android:configChanges="keyboardHidden|orientation|screenSize"> |
Brian Muramatsu | 0822bf4 | 2011-09-12 12:29:32 -0700 | [diff] [blame] | 194 | <intent-filter> |
| 195 | <action android:name="android.intent.action.MAIN" /> |
Brian Muramatsu | 0822bf4 | 2011-09-12 12:29:32 -0700 | [diff] [blame] | 196 | </intent-filter> |
| 197 | <meta-data android:name="test_category" android:value="@string/bt_device_communication" /> |
| 198 | <meta-data android:name="test_parent" android:value="com.android.cts.verifier.bluetooth.BluetoothTestActivity" /> |
| 199 | </activity> |
| 200 | |
Brian Muramatsu | e891acb | 2011-05-19 16:02:39 -0700 | [diff] [blame] | 201 | <activity android:name=".bluetooth.DevicePickerActivity" |
| 202 | android:label="@string/bt_device_picker" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame^] | 203 | android:configChanges="keyboardHidden|orientation|screenSize" /> |
Brian Muramatsu | e891acb | 2011-05-19 16:02:39 -0700 | [diff] [blame] | 204 | |
Christine Chen | 523d04c | 2011-09-22 11:45:50 -0700 | [diff] [blame] | 205 | <activity android:name=".suid.SuidFilesActivity" |
Brian Muramatsu | accc684 | 2010-08-11 18:57:27 -0700 | [diff] [blame] | 206 | android:label="@string/suid_files" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame^] | 207 | android:configChanges="keyboardHidden|orientation|screenSize"> |
Brian Muramatsu | bf8790e | 2010-08-06 11:42:32 -0700 | [diff] [blame] | 208 | <intent-filter> |
| 209 | <action android:name="android.intent.action.MAIN" /> |
| 210 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 211 | </intent-filter> |
Brian Muramatsu | 78d2c1d | 2010-08-16 15:22:30 -0700 | [diff] [blame] | 212 | <meta-data android:name="test_category" android:value="@string/test_category_security" /> |
Brian Muramatsu | bf8790e | 2010-08-06 11:42:32 -0700 | [diff] [blame] | 213 | </activity> |
| 214 | |
Jeff Davidson | 112f279 | 2011-08-22 09:46:46 -0700 | [diff] [blame] | 215 | <activity android:name=".streamquality.StreamingVideoActivity" |
| 216 | android:label="@string/streaming_video" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame^] | 217 | android:configChanges="keyboardHidden|orientation|screenSize"> |
Jeff Davidson | 112f279 | 2011-08-22 09:46:46 -0700 | [diff] [blame] | 218 | <intent-filter> |
| 219 | <action android:name="android.intent.action.MAIN" /> |
| 220 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 221 | </intent-filter> |
| 222 | <meta-data android:name="test_category" android:value="@string/test_category_streaming" /> |
| 223 | </activity> |
| 224 | |
| 225 | <activity android:name=".streamquality.PlayVideoActivity" |
| 226 | android:label="@string/streaming_video" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame^] | 227 | android:configChanges="keyboardHidden|orientation|screenSize" |
Jeff Davidson | 112f279 | 2011-08-22 09:46:46 -0700 | [diff] [blame] | 228 | android:screenOrientation="nosensor" /> |
| 229 | |
Dan Morrill | 5df275b | 2010-08-11 12:19:19 -0700 | [diff] [blame] | 230 | <activity android:name=".features.FeatureSummaryActivity" android:label="@string/feature_summary"> |
| 231 | <intent-filter> |
| 232 | <action android:name="android.intent.action.MAIN" /> |
| 233 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 234 | </intent-filter> |
Brian Muramatsu | 78d2c1d | 2010-08-16 15:22:30 -0700 | [diff] [blame] | 235 | <meta-data android:name="test_category" android:value="@string/test_category_features" /> |
Dan Morrill | 5df275b | 2010-08-11 12:19:19 -0700 | [diff] [blame] | 236 | </activity> |
Brian Muramatsu | 70a9e3f | 2010-06-25 15:27:09 -0700 | [diff] [blame] | 237 | |
Nick Pelly | 1fe0897 | 2012-05-14 17:35:58 -0700 | [diff] [blame] | 238 | <activity android:name=".location.GpsTestActivity" |
| 239 | android:label="@string/location_gps_test" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame^] | 240 | android:configChanges="keyboardHidden|orientation|screenSize"> |
Nick Pelly | 1fe0897 | 2012-05-14 17:35:58 -0700 | [diff] [blame] | 241 | <intent-filter> |
| 242 | <action android:name="android.intent.action.MAIN" /> |
| 243 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 244 | </intent-filter> |
| 245 | <meta-data android:name="test_category" android:value="@string/test_category_hardware" /> |
| 246 | <meta-data android:name="test_required_features" android:value="android.hardware.location.gps" /> |
| 247 | </activity> |
| 248 | |
Brian Muramatsu | 984b78b | 2011-09-23 12:37:28 -0700 | [diff] [blame] | 249 | <activity android:name=".nfc.NfcTestActivity" |
| 250 | android:label="@string/nfc_test" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame^] | 251 | android:configChanges="keyboardHidden|orientation|screenSize"> |
Brian Muramatsu | 984b78b | 2011-09-23 12:37:28 -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.nfc" /> |
| 258 | </activity> |
| 259 | |
| 260 | <activity android:name=".nfc.NdefPushSenderActivity" |
| 261 | android:label="@string/nfc_ndef_push_sender" |
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 | |
| 264 | <activity android:name=".nfc.NdefPushReceiverActivity" |
| 265 | android:label="@string/nfc_ndef_push_receiver" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame^] | 266 | android:configChanges="keyboardHidden|orientation|screenSize" /> |
Brian Muramatsu | 984b78b | 2011-09-23 12:37:28 -0700 | [diff] [blame] | 267 | |
| 268 | <activity android:name=".nfc.TagVerifierActivity" |
| 269 | android:label="@string/nfc_tag_verifier" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame^] | 270 | android:configChanges="keyboardHidden|orientation|screenSize" /> |
Brian Muramatsu | 984b78b | 2011-09-23 12:37:28 -0700 | [diff] [blame] | 271 | |
Dan Morrill | 5df275b | 2010-08-11 12:19:19 -0700 | [diff] [blame] | 272 | <activity android:name=".sensors.AccelerometerTestActivity" android:label="@string/snsr_accel_test" |
Brian Muramatsu | 759dbe3 | 2011-02-11 12:59:24 -0800 | [diff] [blame] | 273 | android:screenOrientation="nosensor"> |
Dan Morrill | 5df275b | 2010-08-11 12:19:19 -0700 | [diff] [blame] | 274 | <intent-filter> |
| 275 | <action android:name="android.intent.action.MAIN" /> |
| 276 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 277 | </intent-filter> |
Brian Muramatsu | 78d2c1d | 2010-08-16 15:22:30 -0700 | [diff] [blame] | 278 | <meta-data android:name="test_category" android:value="@string/test_category_sensors" /> |
Brian Muramatsu | e4b5969 | 2011-09-15 11:09:40 -0700 | [diff] [blame] | 279 | <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] | 280 | </activity> |
Dan Morrill | 98c56e6 | 2010-08-13 02:43:52 -0700 | [diff] [blame] | 281 | |
Brian Muramatsu | 729de48 | 2011-05-12 12:26:58 -0700 | [diff] [blame] | 282 | <activity android:name=".sensors.GyroscopeTestActivity" android:label="@string/snsr_gyro_test" |
| 283 | android:screenOrientation="nosensor"> |
| 284 | <intent-filter> |
| 285 | <action android:name="android.intent.action.MAIN" /> |
| 286 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 287 | </intent-filter> |
| 288 | <meta-data android:name="test_category" android:value="@string/test_category_sensors" /> |
Brian Muramatsu | e4b5969 | 2011-09-15 11:09:40 -0700 | [diff] [blame] | 289 | <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] | 290 | </activity> |
| 291 | |
Eino-Ville Talvala | e56ae2a | 2012-04-27 19:18:41 -0700 | [diff] [blame] | 292 | <activity android:name=".camera.formats.CameraFormatsActivity" |
| 293 | android:label="@string/camera_format" |
| 294 | android:screenOrientation="landscape"> |
| 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_camera" /> |
| 300 | |
Eino-Ville Talvala | 4c86a54 | 2012-09-23 10:12:24 -0700 | [diff] [blame] | 301 | <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] | 302 | </activity> |
Eino-Ville Talvala | 754df96 | 2012-09-18 13:53:13 -0700 | [diff] [blame] | 303 | <!-- Experimental |
Brian Muramatsu | 1f54980 | 2011-06-09 15:25:28 -0700 | [diff] [blame] | 304 | <activity android:name=".camera.analyzer.CameraAnalyzerActivity" |
Christine Chen | 523d04c | 2011-09-22 11:45:50 -0700 | [diff] [blame] | 305 | android:label="@string/camera_analyzer" |
| 306 | android:screenOrientation="landscape"> |
Brian Muramatsu | 1f54980 | 2011-06-09 15:25:28 -0700 | [diff] [blame] | 307 | <intent-filter> |
| 308 | <action android:name="android.intent.action.MAIN" /> |
| 309 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 310 | </intent-filter> |
| 311 | <meta-data android:name="test_category" android:value="@string/test_category_camera" /> |
Christine Chen | 523d04c | 2011-09-22 11:45:50 -0700 | [diff] [blame] | 312 | |
| 313 | <intent-filter> |
| 314 | <action android:name="android.hardware.usb.action.USB_ACCESSORY_ATTACHED" /> |
| 315 | </intent-filter> |
| 316 | <meta-data android:name="android.hardware.usb.action.USB_ACCESSORY_ATTACHED" |
| 317 | android:resource="@xml/accessory_filter_adk" /> |
Brian Muramatsu | 1f54980 | 2011-06-09 15:25:28 -0700 | [diff] [blame] | 318 | </activity> |
Eino-Ville Talvala | 754df96 | 2012-09-18 13:53:13 -0700 | [diff] [blame] | 319 | --> |
James Painter | fa2e166 | 2012-09-13 15:37:58 -0700 | [diff] [blame] | 320 | |
| 321 | <activity android:name=".camera.orientation.CameraOrientationActivity" |
| 322 | android:label="@string/camera_orientation" |
| 323 | android:screenOrientation="landscape"> |
| 324 | <intent-filter> |
| 325 | <action android:name="android.intent.action.MAIN" /> |
| 326 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 327 | </intent-filter> |
| 328 | <meta-data android:name="test_category" android:value="@string/test_category_camera" /> |
| 329 | |
Eino-Ville Talvala | 4c86a54 | 2012-09-23 10:12:24 -0700 | [diff] [blame] | 330 | <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] | 331 | </activity> |
| 332 | |
Brian Muramatsu | 12c8691 | 2011-07-21 17:26:46 -0700 | [diff] [blame] | 333 | <activity android:name=".usb.UsbAccessoryTestActivity" |
| 334 | android:label="@string/usb_accessory_test" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame^] | 335 | android:configChanges="keyboardHidden|orientation|screenSize"> |
Brian Muramatsu | 12c8691 | 2011-07-21 17:26:46 -0700 | [diff] [blame] | 336 | <intent-filter> |
| 337 | <action android:name="android.intent.action.MAIN" /> |
| 338 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 339 | </intent-filter> |
| 340 | <meta-data android:name="test_category" android:value="@string/test_category_hardware" /> |
Brian Muramatsu | d4aea14 | 2011-09-20 17:23:22 -0700 | [diff] [blame] | 341 | <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] | 342 | </activity> |
| 343 | |
Yoshihiko Ikenaga | f2bfc97 | 2012-04-11 22:45:03 +0900 | [diff] [blame] | 344 | <activity android:name=".p2p.P2pTestListActivity" |
| 345 | android:label="@string/p2p_test" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame^] | 346 | android:configChanges="keyboardHidden|orientation|screenSize"> |
Yoshihiko Ikenaga | f2bfc97 | 2012-04-11 22:45:03 +0900 | [diff] [blame] | 347 | <intent-filter> |
| 348 | <action android:name="android.intent.action.MAIN" /> |
| 349 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 350 | </intent-filter> |
| 351 | <meta-data android:name="test_category" android:value="@string/test_category_networking" /> |
| 352 | <meta-data android:name="test_required_features" android:value="android.hardware.wifi.direct" /> |
| 353 | </activity> |
| 354 | |
Yoshihiko Ikenaga | 395214c | 2012-05-10 20:19:35 +0900 | [diff] [blame] | 355 | <activity android:name=".p2p.GoNegRequesterTestListActivity" |
| 356 | android:label="@string/p2p_go_neg_requester" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame^] | 357 | android:configChanges="keyboardHidden|orientation|screenSize" /> |
Yoshihiko Ikenaga | 395214c | 2012-05-10 20:19:35 +0900 | [diff] [blame] | 358 | |
| 359 | <activity android:name=".p2p.GoNegRequesterTestActivity" |
| 360 | android:label="@string/p2p_go_neg_requester" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame^] | 361 | android:configChanges="keyboardHidden|orientation|screenSize" /> |
Yoshihiko Ikenaga | 395214c | 2012-05-10 20:19:35 +0900 | [diff] [blame] | 362 | |
| 363 | <activity android:name=".p2p.GoNegResponderTestActivity" |
| 364 | android:label="@string/p2p_go_neg_responder" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame^] | 365 | android:configChanges="keyboardHidden|orientation|screenSize" /> |
Yoshihiko Ikenaga | 395214c | 2012-05-10 20:19:35 +0900 | [diff] [blame] | 366 | |
| 367 | <activity android:name=".p2p.P2pClientTestListActivity" |
| 368 | android:label="@string/p2p_join_go" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame^] | 369 | android:configChanges="keyboardHidden|orientation|screenSize" /> |
Yoshihiko Ikenaga | 395214c | 2012-05-10 20:19:35 +0900 | [diff] [blame] | 370 | |
| 371 | <activity android:name=".p2p.P2pClientTestActivity" |
| 372 | android:label="@string/p2p_join_go" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame^] | 373 | android:configChanges="keyboardHidden|orientation|screenSize" /> |
Yoshihiko Ikenaga | 395214c | 2012-05-10 20:19:35 +0900 | [diff] [blame] | 374 | |
| 375 | <activity android:name=".p2p.GoTestActivity" |
| 376 | android:label="@string/p2p_accept_client" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame^] | 377 | android:configChanges="keyboardHidden|orientation|screenSize" /> |
Yoshihiko Ikenaga | 395214c | 2012-05-10 20:19:35 +0900 | [diff] [blame] | 378 | |
Yoshihiko Ikenaga | f2bfc97 | 2012-04-11 22:45:03 +0900 | [diff] [blame] | 379 | <activity android:name=".p2p.ServiceRequesterTestListActivity" |
| 380 | android:label="@string/p2p_service_discovery_requester" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame^] | 381 | android:configChanges="keyboardHidden|orientation|screenSize" /> |
Yoshihiko Ikenaga | f2bfc97 | 2012-04-11 22:45:03 +0900 | [diff] [blame] | 382 | |
| 383 | <activity android:name=".p2p.ServiceRequesterTestActivity" |
| 384 | android:label="@string/p2p_service_discovery_requester" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame^] | 385 | android:configChanges="keyboardHidden|orientation|screenSize" /> |
Yoshihiko Ikenaga | f2bfc97 | 2012-04-11 22:45:03 +0900 | [diff] [blame] | 386 | |
| 387 | <activity android:name=".p2p.ServiceResponderTestActivity" |
| 388 | android:label="@string/p2p_service_discovery_responder" |
Brian Muramatsu | 6bcdc7d | 2012-10-16 13:35:05 -0700 | [diff] [blame^] | 389 | android:configChanges="keyboardHidden|orientation|screenSize" /> |
Yoshihiko Ikenaga | f2bfc97 | 2012-04-11 22:45:03 +0900 | [diff] [blame] | 390 | |
Brian Muramatsu | da429d7 | 2012-06-14 12:45:22 -0700 | [diff] [blame] | 391 | <activity-alias android:name=".CtsVerifierActivity" android:label="@string/app_name" |
| 392 | android:targetActivity=".TestListActivity"> |
| 393 | <intent-filter> |
| 394 | <action android:name="android.intent.action.MAIN" /> |
| 395 | <category android:name="android.intent.category.LAUNCHER" /> |
| 396 | </intent-filter> |
| 397 | </activity-alias> |
| 398 | |
Brian Muramatsu | f894620 | 2010-11-09 13:43:39 -0800 | [diff] [blame] | 399 | </application> |
| 400 | |
Christine Chen | 523d04c | 2011-09-22 11:45:50 -0700 | [diff] [blame] | 401 | </manifest> |