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 |
| 8 | |
| 9 | http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | |
| 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 | 9cbd59b | 2011-07-28 15:01:30 -0700 | [diff] [blame] | 20 | android:versionCode="3" |
| 21 | android:versionName="2.3_r5"> |
Brian Muramatsu | accc684 | 2010-08-11 18:57:27 -0700 | [diff] [blame] | 22 | |
Dan Morrill | b26cc2f | 2010-08-26 16:21:52 -0700 | [diff] [blame] | 23 | <uses-sdk android:minSdkVersion="5"></uses-sdk> |
Brian Muramatsu | 759dbe3 | 2011-02-11 12:59:24 -0800 | [diff] [blame] | 24 | |
Brian Muramatsu | e891acb | 2011-05-19 16:02:39 -0700 | [diff] [blame] | 25 | <uses-permission android:name="android.permission.BLUETOOTH" /> |
Brian Muramatsu | 713049d | 2011-06-23 18:35:36 -0700 | [diff] [blame] | 26 | <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" /> |
Brian Muramatsu | f894620 | 2010-11-09 13:43:39 -0800 | [diff] [blame] | 27 | <uses-permission android:name="android.permission.RECORD_AUDIO" /> |
Brian Muramatsu | 759dbe3 | 2011-02-11 12:59:24 -0800 | [diff] [blame] | 28 | <uses-permission android:name="android.permission.WAKE_LOCK" /> |
| 29 | |
| 30 | <!-- Needed by the Audio Quality Verifier to store the sound samples that will be mailed. --> |
| 31 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
Brian Muramatsu | 70a9e3f | 2010-06-25 15:27:09 -0700 | [diff] [blame] | 32 | |
Brian Muramatsu | 0ac3cdf | 2011-08-03 11:47:10 -0700 | [diff] [blame^] | 33 | <application android:label="@string/app_name" |
| 34 | android:icon="@drawable/icon" |
| 35 | android:backupAgent="VerifierBackupAgent" |
| 36 | android:debuggable="true"> |
| 37 | |
| 38 | <meta-data android:name="com.google.android.backup.api_key" |
| 39 | android:value="AEdPqrEAAAAIbK6ldcOzoeRtQ1u1dFVJ1A7KetRhit-a1Xa82Q" /> |
Brian Muramatsu | bf8790e | 2010-08-06 11:42:32 -0700 | [diff] [blame] | 40 | |
| 41 | <activity android:name=".CtsVerifierActivity" android:label="@string/app_name"> |
Brian Muramatsu | 70a9e3f | 2010-06-25 15:27:09 -0700 | [diff] [blame] | 42 | <intent-filter> |
| 43 | <action android:name="android.intent.action.MAIN" /> |
| 44 | <category android:name="android.intent.category.LAUNCHER" /> |
| 45 | </intent-filter> |
| 46 | </activity> |
Brian Muramatsu | bf8790e | 2010-08-06 11:42:32 -0700 | [diff] [blame] | 47 | |
| 48 | <activity android:name=".TestListActivity" android:label="@string/test_list_title" /> |
Brian Muramatsu | e49daa9 | 2011-06-03 14:57:01 -0700 | [diff] [blame] | 49 | |
Brian Muramatsu | ac00737 | 2010-08-18 11:02:28 -0700 | [diff] [blame] | 50 | <provider android:name=".TestResultsProvider" |
| 51 | android:authorities="com.android.cts.verifier.testresultsprovider" /> |
Brian Muramatsu | e891acb | 2011-05-19 16:02:39 -0700 | [diff] [blame] | 52 | |
Brian Muramatsu | 713049d | 2011-06-23 18:35:36 -0700 | [diff] [blame] | 53 | <activity android:name=".admin.PolicySerializationTestActivity" |
| 54 | android:label="@string/da_policy_serialization_test" |
| 55 | android:configChanges="keyboardHidden|orientation"> |
| 56 | <intent-filter> |
| 57 | <action android:name="android.intent.action.MAIN" /> |
| 58 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 59 | </intent-filter> |
| 60 | <meta-data android:name="test_category" android:value="@string/test_category_device_admin" /> |
| 61 | </activity> |
| 62 | |
| 63 | <activity android:name=".admin.ScreenLockTestActivity" |
| 64 | android:label="@string/da_screen_lock_test" |
| 65 | android:configChanges="keyboardHidden|orientation"> |
| 66 | <intent-filter> |
| 67 | <action android:name="android.intent.action.MAIN" /> |
| 68 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 69 | </intent-filter> |
| 70 | <meta-data android:name="test_category" android:value="@string/test_category_device_admin" /> |
| 71 | </activity> |
| 72 | |
| 73 | <receiver android:name=".admin.TestDeviceAdminReceiver" |
| 74 | android:permission="android.permission.BIND_DEVICE_ADMIN"> |
| 75 | <meta-data android:name="android.app.device_admin" |
| 76 | android:resource="@xml/device_admin" /> |
| 77 | <intent-filter> |
| 78 | <action android:name="android.app.action.DEVICE_ADMIN_ENABLED" /> |
| 79 | </intent-filter> |
| 80 | </receiver> |
| 81 | |
Brian Muramatsu | 0ac3cdf | 2011-08-03 11:47:10 -0700 | [diff] [blame^] | 82 | <activity android:name=".backup.BackupTestActivity" android:label="@string/backup_test"> |
| 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 | </activity> |
| 88 | |
Brian Muramatsu | e891acb | 2011-05-19 16:02:39 -0700 | [diff] [blame] | 89 | <activity android:name=".bluetooth.BluetoothTestActivity" |
| 90 | android:label="@string/bluetooth_test" |
| 91 | android:configChanges="keyboardHidden|orientation"> |
| 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_networking" /> |
| 97 | </activity> |
| 98 | |
| 99 | <activity android:name=".bluetooth.BluetoothToggleActivity" |
| 100 | android:label="@string/bt_toggle_bluetooth" |
Brian Muramatsu | f942683 | 2011-06-17 15:43:59 -0700 | [diff] [blame] | 101 | android:configChanges="keyboardHidden|orientation"> |
| 102 | <intent-filter> |
| 103 | <action android:name="android.intent.action.MAIN" /> |
| 104 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 105 | </intent-filter> |
| 106 | <meta-data android:name="test_category" android:value="@string/bt_control" /> |
| 107 | <meta-data android:name="test_parent" android:value="com.android.cts.verifier.bluetooth.BluetoothTestActivity" /> |
| 108 | </activity> |
Brian Muramatsu | e891acb | 2011-05-19 16:02:39 -0700 | [diff] [blame] | 109 | |
Brian Muramatsu | f942683 | 2011-06-17 15:43:59 -0700 | [diff] [blame] | 110 | <activity android:name=".bluetooth.SecureServerActivity" |
| 111 | android:label="@string/bt_secure_server" |
| 112 | android:configChanges="keyboardHidden|orientation"> |
| 113 | <intent-filter> |
| 114 | <action android:name="android.intent.action.MAIN" /> |
| 115 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 116 | </intent-filter> |
| 117 | <meta-data android:name="test_category" android:value="@string/bt_device_communication" /> |
| 118 | <meta-data android:name="test_parent" android:value="com.android.cts.verifier.bluetooth.BluetoothTestActivity" /> |
| 119 | </activity> |
| 120 | |
| 121 | <activity android:name=".bluetooth.InsecureServerActivity" |
| 122 | android:label="@string/bt_insecure_server" |
| 123 | android:configChanges="keyboardHidden|orientation"> |
| 124 | <intent-filter> |
| 125 | <action android:name="android.intent.action.MAIN" /> |
| 126 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 127 | </intent-filter> |
| 128 | <meta-data android:name="test_category" android:value="@string/bt_device_communication" /> |
| 129 | <meta-data android:name="test_parent" android:value="com.android.cts.verifier.bluetooth.BluetoothTestActivity" /> |
| 130 | </activity> |
| 131 | |
| 132 | <activity android:name=".bluetooth.SecureClientActivity" |
| 133 | android:label="@string/bt_secure_client" |
| 134 | android:configChanges="keyboardHidden|orientation"> |
| 135 | <intent-filter> |
| 136 | <action android:name="android.intent.action.MAIN" /> |
| 137 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 138 | </intent-filter> |
| 139 | <meta-data android:name="test_category" android:value="@string/bt_device_communication" /> |
| 140 | <meta-data android:name="test_parent" android:value="com.android.cts.verifier.bluetooth.BluetoothTestActivity" /> |
| 141 | </activity> |
| 142 | |
| 143 | <activity android:name=".bluetooth.InsecureClientActivity" |
| 144 | android:label="@string/bt_insecure_client" |
| 145 | android:configChanges="keyboardHidden|orientation"> |
| 146 | <intent-filter> |
| 147 | <action android:name="android.intent.action.MAIN" /> |
| 148 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 149 | </intent-filter> |
| 150 | <meta-data android:name="test_category" android:value="@string/bt_device_communication" /> |
| 151 | <meta-data android:name="test_parent" android:value="com.android.cts.verifier.bluetooth.BluetoothTestActivity" /> |
| 152 | </activity> |
| 153 | |
Brian Muramatsu | e891acb | 2011-05-19 16:02:39 -0700 | [diff] [blame] | 154 | <activity android:name=".bluetooth.DevicePickerActivity" |
| 155 | android:label="@string/bt_device_picker" |
| 156 | android:configChanges="keyboardHidden|orientation" /> |
| 157 | |
Brian Muramatsu | accc684 | 2010-08-11 18:57:27 -0700 | [diff] [blame] | 158 | <activity android:name=".suid.SuidFilesActivity" |
| 159 | android:label="@string/suid_files" |
| 160 | android:configChanges="keyboardHidden|orientation"> |
Brian Muramatsu | bf8790e | 2010-08-06 11:42:32 -0700 | [diff] [blame] | 161 | <intent-filter> |
| 162 | <action android:name="android.intent.action.MAIN" /> |
| 163 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 164 | </intent-filter> |
Brian Muramatsu | 78d2c1d | 2010-08-16 15:22:30 -0700 | [diff] [blame] | 165 | <meta-data android:name="test_category" android:value="@string/test_category_security" /> |
Brian Muramatsu | bf8790e | 2010-08-06 11:42:32 -0700 | [diff] [blame] | 166 | </activity> |
| 167 | |
Dan Morrill | 5df275b | 2010-08-11 12:19:19 -0700 | [diff] [blame] | 168 | <activity android:name=".features.FeatureSummaryActivity" android:label="@string/feature_summary"> |
| 169 | <intent-filter> |
| 170 | <action android:name="android.intent.action.MAIN" /> |
| 171 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 172 | </intent-filter> |
Brian Muramatsu | 78d2c1d | 2010-08-16 15:22:30 -0700 | [diff] [blame] | 173 | <meta-data android:name="test_category" android:value="@string/test_category_features" /> |
Dan Morrill | 5df275b | 2010-08-11 12:19:19 -0700 | [diff] [blame] | 174 | </activity> |
Brian Muramatsu | 70a9e3f | 2010-06-25 15:27:09 -0700 | [diff] [blame] | 175 | |
Dan Morrill | 5df275b | 2010-08-11 12:19:19 -0700 | [diff] [blame] | 176 | <activity android:name=".sensors.AccelerometerTestActivity" android:label="@string/snsr_accel_test" |
Brian Muramatsu | 759dbe3 | 2011-02-11 12:59:24 -0800 | [diff] [blame] | 177 | android:screenOrientation="nosensor"> |
Dan Morrill | 5df275b | 2010-08-11 12:19:19 -0700 | [diff] [blame] | 178 | <intent-filter> |
| 179 | <action android:name="android.intent.action.MAIN" /> |
| 180 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 181 | </intent-filter> |
Brian Muramatsu | 78d2c1d | 2010-08-16 15:22:30 -0700 | [diff] [blame] | 182 | <meta-data android:name="test_category" android:value="@string/test_category_sensors" /> |
Dan Morrill | 5df275b | 2010-08-11 12:19:19 -0700 | [diff] [blame] | 183 | </activity> |
Dan Morrill | 98c56e6 | 2010-08-13 02:43:52 -0700 | [diff] [blame] | 184 | |
Brian Muramatsu | 729de48 | 2011-05-12 12:26:58 -0700 | [diff] [blame] | 185 | <activity android:name=".sensors.GyroscopeTestActivity" android:label="@string/snsr_gyro_test" |
| 186 | android:screenOrientation="nosensor"> |
| 187 | <intent-filter> |
| 188 | <action android:name="android.intent.action.MAIN" /> |
| 189 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 190 | </intent-filter> |
| 191 | <meta-data android:name="test_category" android:value="@string/test_category_sensors" /> |
| 192 | </activity> |
| 193 | |
Brian Muramatsu | 04d93aa | 2011-04-21 11:41:26 -0700 | [diff] [blame] | 194 | <activity android:name=".audioquality.AudioQualityVerifierActivity" |
| 195 | android:label="@string/aq_verifier"> |
Dan Morrill | 98c56e6 | 2010-08-13 02:43:52 -0700 | [diff] [blame] | 196 | <intent-filter> |
| 197 | <action android:name="android.intent.action.MAIN" /> |
| 198 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 199 | </intent-filter> |
Brian Muramatsu | 04d93aa | 2011-04-21 11:41:26 -0700 | [diff] [blame] | 200 | <meta-data android:name="test_category" android:value="@string/test_category_audio" /> |
Dan Morrill | 98c56e6 | 2010-08-13 02:43:52 -0700 | [diff] [blame] | 201 | </activity> |
Brian Muramatsu | f894620 | 2010-11-09 13:43:39 -0800 | [diff] [blame] | 202 | |
Brian Muramatsu | 04d93aa | 2011-04-21 11:41:26 -0700 | [diff] [blame] | 203 | <activity android:name=".audioquality.CalibrateVolumeActivity" |
| 204 | android:label="@string/aq_calibrate_volume_name" /> |
Brian Muramatsu | f894620 | 2010-11-09 13:43:39 -0800 | [diff] [blame] | 205 | |
Brian Muramatsu | 04d93aa | 2011-04-21 11:41:26 -0700 | [diff] [blame] | 206 | <activity android:name=".audioquality.ViewResultsActivity" |
| 207 | android:label="@string/aq_view_results_name" /> |
| 208 | |
| 209 | <service android:name=".audioquality.ExperimentService" /> |
| 210 | |
Brian Muramatsu | f894620 | 2010-11-09 13:43:39 -0800 | [diff] [blame] | 211 | </application> |
| 212 | |
Dan Morrill | 5df275b | 2010-08-11 12:19:19 -0700 | [diff] [blame] | 213 | </manifest> |