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" |
| 20 | android:versionCode="1" |
| 21 | android:versionName="1.0"> |
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 | f894620 | 2010-11-09 13:43:39 -0800 | [diff] [blame] | 25 | <uses-permission android:name="android.permission.RECORD_AUDIO" /> |
Brian Muramatsu | 759dbe3 | 2011-02-11 12:59:24 -0800 | [diff] [blame^] | 26 | <uses-permission android:name="android.permission.WAKE_LOCK" /> |
| 27 | |
| 28 | <!-- Needed by the Audio Quality Verifier to store the sound samples that will be mailed. --> |
| 29 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
Brian Muramatsu | 70a9e3f | 2010-06-25 15:27:09 -0700 | [diff] [blame] | 30 | |
| 31 | <application android:label="@string/app_name"> |
Brian Muramatsu | bf8790e | 2010-08-06 11:42:32 -0700 | [diff] [blame] | 32 | |
| 33 | <activity android:name=".CtsVerifierActivity" android:label="@string/app_name"> |
Brian Muramatsu | 70a9e3f | 2010-06-25 15:27:09 -0700 | [diff] [blame] | 34 | <intent-filter> |
| 35 | <action android:name="android.intent.action.MAIN" /> |
| 36 | <category android:name="android.intent.category.LAUNCHER" /> |
| 37 | </intent-filter> |
| 38 | </activity> |
Brian Muramatsu | bf8790e | 2010-08-06 11:42:32 -0700 | [diff] [blame] | 39 | |
| 40 | <activity android:name=".TestListActivity" android:label="@string/test_list_title" /> |
Brian Muramatsu | ac00737 | 2010-08-18 11:02:28 -0700 | [diff] [blame] | 41 | |
| 42 | <provider android:name=".TestResultsProvider" |
| 43 | android:authorities="com.android.cts.verifier.testresultsprovider" /> |
Brian Muramatsu | bf8790e | 2010-08-06 11:42:32 -0700 | [diff] [blame] | 44 | |
Brian Muramatsu | accc684 | 2010-08-11 18:57:27 -0700 | [diff] [blame] | 45 | <activity android:name=".suid.SuidFilesActivity" |
| 46 | android:label="@string/suid_files" |
| 47 | android:configChanges="keyboardHidden|orientation"> |
Brian Muramatsu | bf8790e | 2010-08-06 11:42:32 -0700 | [diff] [blame] | 48 | <intent-filter> |
| 49 | <action android:name="android.intent.action.MAIN" /> |
| 50 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 51 | </intent-filter> |
Brian Muramatsu | 78d2c1d | 2010-08-16 15:22:30 -0700 | [diff] [blame] | 52 | <meta-data android:name="test_category" android:value="@string/test_category_security" /> |
Brian Muramatsu | bf8790e | 2010-08-06 11:42:32 -0700 | [diff] [blame] | 53 | </activity> |
| 54 | |
Dan Morrill | 5df275b | 2010-08-11 12:19:19 -0700 | [diff] [blame] | 55 | <activity android:name=".features.FeatureSummaryActivity" android:label="@string/feature_summary"> |
| 56 | <intent-filter> |
| 57 | <action android:name="android.intent.action.MAIN" /> |
| 58 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 59 | </intent-filter> |
Brian Muramatsu | 78d2c1d | 2010-08-16 15:22:30 -0700 | [diff] [blame] | 60 | <meta-data android:name="test_category" android:value="@string/test_category_features" /> |
Dan Morrill | 5df275b | 2010-08-11 12:19:19 -0700 | [diff] [blame] | 61 | </activity> |
Brian Muramatsu | 70a9e3f | 2010-06-25 15:27:09 -0700 | [diff] [blame] | 62 | |
Dan Morrill | 5df275b | 2010-08-11 12:19:19 -0700 | [diff] [blame] | 63 | <activity android:name=".sensors.AccelerometerTestActivity" android:label="@string/snsr_accel_test" |
Brian Muramatsu | 759dbe3 | 2011-02-11 12:59:24 -0800 | [diff] [blame^] | 64 | android:screenOrientation="nosensor"> |
Dan Morrill | 5df275b | 2010-08-11 12:19:19 -0700 | [diff] [blame] | 65 | <intent-filter> |
| 66 | <action android:name="android.intent.action.MAIN" /> |
| 67 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 68 | </intent-filter> |
Brian Muramatsu | 78d2c1d | 2010-08-16 15:22:30 -0700 | [diff] [blame] | 69 | <meta-data android:name="test_category" android:value="@string/test_category_sensors" /> |
Dan Morrill | 5df275b | 2010-08-11 12:19:19 -0700 | [diff] [blame] | 70 | </activity> |
Dan Morrill | 98c56e6 | 2010-08-13 02:43:52 -0700 | [diff] [blame] | 71 | |
| 72 | <activity android:name=".sensors.MagnetometerTestActivity" android:label="@string/snsr_mag_test" |
Brian Muramatsu | 759dbe3 | 2011-02-11 12:59:24 -0800 | [diff] [blame^] | 73 | android:screenOrientation="nosensor"> |
Dan Morrill | 98c56e6 | 2010-08-13 02:43:52 -0700 | [diff] [blame] | 74 | <intent-filter> |
| 75 | <action android:name="android.intent.action.MAIN" /> |
| 76 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 77 | </intent-filter> |
Brian Muramatsu | 78d2c1d | 2010-08-16 15:22:30 -0700 | [diff] [blame] | 78 | <meta-data android:name="test_category" android:value="@string/test_category_sensors" /> |
Dan Morrill | 98c56e6 | 2010-08-13 02:43:52 -0700 | [diff] [blame] | 79 | </activity> |
Brian Muramatsu | f894620 | 2010-11-09 13:43:39 -0800 | [diff] [blame] | 80 | |
| 81 | <activity android:name=".audioquality.AudioQualityVerifierActivity" |
Brian Muramatsu | 759dbe3 | 2011-02-11 12:59:24 -0800 | [diff] [blame^] | 82 | android:label="@string/aq_verifier"> |
Brian Muramatsu | f894620 | 2010-11-09 13:43:39 -0800 | [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_audio" /> |
| 88 | </activity> |
| 89 | |
| 90 | <activity android:name=".audioquality.CalibrateVolumeActivity" |
| 91 | android:label="@string/aq_calibrate_volume_name" /> |
| 92 | |
| 93 | <activity android:name=".audioquality.ViewResultsActivity" |
| 94 | android:label="@string/aq_view_results_name" /> |
| 95 | |
| 96 | <service android:name=".audioquality.ExperimentService" /> |
| 97 | |
| 98 | </application> |
| 99 | |
Dan Morrill | 5df275b | 2010-08-11 12:19:19 -0700 | [diff] [blame] | 100 | </manifest> |