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 | 70a9e3f | 2010-06-25 15:27:09 -0700 | [diff] [blame] | 24 | |
| 25 | <application android:label="@string/app_name"> |
Brian Muramatsu | bf8790e | 2010-08-06 11:42:32 -0700 | [diff] [blame] | 26 | |
| 27 | <activity android:name=".CtsVerifierActivity" android:label="@string/app_name"> |
Brian Muramatsu | 70a9e3f | 2010-06-25 15:27:09 -0700 | [diff] [blame] | 28 | <intent-filter> |
| 29 | <action android:name="android.intent.action.MAIN" /> |
| 30 | <category android:name="android.intent.category.LAUNCHER" /> |
| 31 | </intent-filter> |
| 32 | </activity> |
Brian Muramatsu | bf8790e | 2010-08-06 11:42:32 -0700 | [diff] [blame] | 33 | |
| 34 | <activity android:name=".TestListActivity" android:label="@string/test_list_title" /> |
Brian Muramatsu | ac00737 | 2010-08-18 11:02:28 -0700 | [diff] [blame] | 35 | |
| 36 | <provider android:name=".TestResultsProvider" |
| 37 | android:authorities="com.android.cts.verifier.testresultsprovider" /> |
Brian Muramatsu | bf8790e | 2010-08-06 11:42:32 -0700 | [diff] [blame] | 38 | |
Brian Muramatsu | accc684 | 2010-08-11 18:57:27 -0700 | [diff] [blame] | 39 | <activity android:name=".suid.SuidFilesActivity" |
| 40 | android:label="@string/suid_files" |
| 41 | android:configChanges="keyboardHidden|orientation"> |
Brian Muramatsu | bf8790e | 2010-08-06 11:42:32 -0700 | [diff] [blame] | 42 | <intent-filter> |
| 43 | <action android:name="android.intent.action.MAIN" /> |
| 44 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 45 | </intent-filter> |
Brian Muramatsu | 78d2c1d | 2010-08-16 15:22:30 -0700 | [diff] [blame] | 46 | <meta-data android:name="test_category" android:value="@string/test_category_security" /> |
Brian Muramatsu | bf8790e | 2010-08-06 11:42:32 -0700 | [diff] [blame] | 47 | </activity> |
| 48 | |
Dan Morrill | 5df275b | 2010-08-11 12:19:19 -0700 | [diff] [blame] | 49 | <activity android:name=".features.FeatureSummaryActivity" android:label="@string/feature_summary"> |
| 50 | <intent-filter> |
| 51 | <action android:name="android.intent.action.MAIN" /> |
| 52 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 53 | </intent-filter> |
Brian Muramatsu | 78d2c1d | 2010-08-16 15:22:30 -0700 | [diff] [blame] | 54 | <meta-data android:name="test_category" android:value="@string/test_category_features" /> |
Dan Morrill | 5df275b | 2010-08-11 12:19:19 -0700 | [diff] [blame] | 55 | </activity> |
Brian Muramatsu | 70a9e3f | 2010-06-25 15:27:09 -0700 | [diff] [blame] | 56 | |
Dan Morrill | 5df275b | 2010-08-11 12:19:19 -0700 | [diff] [blame] | 57 | <activity android:name=".sensors.AccelerometerTestActivity" android:label="@string/snsr_accel_test" |
Dan Morrill | b26cc2f | 2010-08-26 16:21:52 -0700 | [diff] [blame^] | 58 | android:screenOrientation="nosensor"> |
Dan Morrill | 5df275b | 2010-08-11 12:19:19 -0700 | [diff] [blame] | 59 | <intent-filter> |
| 60 | <action android:name="android.intent.action.MAIN" /> |
| 61 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 62 | </intent-filter> |
Brian Muramatsu | 78d2c1d | 2010-08-16 15:22:30 -0700 | [diff] [blame] | 63 | <meta-data android:name="test_category" android:value="@string/test_category_sensors" /> |
Dan Morrill | 5df275b | 2010-08-11 12:19:19 -0700 | [diff] [blame] | 64 | </activity> |
Dan Morrill | 98c56e6 | 2010-08-13 02:43:52 -0700 | [diff] [blame] | 65 | |
| 66 | <activity android:name=".sensors.MagnetometerTestActivity" android:label="@string/snsr_mag_test" |
Dan Morrill | b26cc2f | 2010-08-26 16:21:52 -0700 | [diff] [blame^] | 67 | android:screenOrientation="nosensor"> |
Dan Morrill | 98c56e6 | 2010-08-13 02:43:52 -0700 | [diff] [blame] | 68 | <intent-filter> |
| 69 | <action android:name="android.intent.action.MAIN" /> |
| 70 | <category android:name="android.cts.intent.category.MANUAL_TEST" /> |
| 71 | </intent-filter> |
Brian Muramatsu | 78d2c1d | 2010-08-16 15:22:30 -0700 | [diff] [blame] | 72 | <meta-data android:name="test_category" android:value="@string/test_category_sensors" /> |
Dan Morrill | 98c56e6 | 2010-08-13 02:43:52 -0700 | [diff] [blame] | 73 | </activity> |
Dan Morrill | 5df275b | 2010-08-11 12:19:19 -0700 | [diff] [blame] | 74 | </application> |
| 75 | </manifest> |