blob: 5577f38d76a87dae503dd092463a3de52ba692d9 [file] [log] [blame]
Brian Muramatsu70a9e3f2010-06-25 15:27:09 -07001<?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 Muramatsuaccc6842010-08-11 18:57:27 -070022
Dan Morrillb26cc2f2010-08-26 16:21:52 -070023 <uses-sdk android:minSdkVersion="5"></uses-sdk>
Brian Muramatsu70a9e3f2010-06-25 15:27:09 -070024
25 <application android:label="@string/app_name">
Brian Muramatsubf8790e2010-08-06 11:42:32 -070026
27 <activity android:name=".CtsVerifierActivity" android:label="@string/app_name">
Brian Muramatsu70a9e3f2010-06-25 15:27:09 -070028 <intent-filter>
29 <action android:name="android.intent.action.MAIN" />
30 <category android:name="android.intent.category.LAUNCHER" />
31 </intent-filter>
32 </activity>
Brian Muramatsubf8790e2010-08-06 11:42:32 -070033
34 <activity android:name=".TestListActivity" android:label="@string/test_list_title" />
Brian Muramatsuac007372010-08-18 11:02:28 -070035
36 <provider android:name=".TestResultsProvider"
37 android:authorities="com.android.cts.verifier.testresultsprovider" />
Brian Muramatsubf8790e2010-08-06 11:42:32 -070038
Brian Muramatsuaccc6842010-08-11 18:57:27 -070039 <activity android:name=".suid.SuidFilesActivity"
40 android:label="@string/suid_files"
41 android:configChanges="keyboardHidden|orientation">
Brian Muramatsubf8790e2010-08-06 11:42:32 -070042 <intent-filter>
43 <action android:name="android.intent.action.MAIN" />
44 <category android:name="android.cts.intent.category.MANUAL_TEST" />
45 </intent-filter>
Brian Muramatsu78d2c1d2010-08-16 15:22:30 -070046 <meta-data android:name="test_category" android:value="@string/test_category_security" />
Brian Muramatsubf8790e2010-08-06 11:42:32 -070047 </activity>
48
Dan Morrill5df275b2010-08-11 12:19:19 -070049 <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 Muramatsu78d2c1d2010-08-16 15:22:30 -070054 <meta-data android:name="test_category" android:value="@string/test_category_features" />
Dan Morrill5df275b2010-08-11 12:19:19 -070055 </activity>
Brian Muramatsu70a9e3f2010-06-25 15:27:09 -070056
Dan Morrill5df275b2010-08-11 12:19:19 -070057 <activity android:name=".sensors.AccelerometerTestActivity" android:label="@string/snsr_accel_test"
Dan Morrillb26cc2f2010-08-26 16:21:52 -070058 android:screenOrientation="nosensor">
Dan Morrill5df275b2010-08-11 12:19:19 -070059 <intent-filter>
60 <action android:name="android.intent.action.MAIN" />
61 <category android:name="android.cts.intent.category.MANUAL_TEST" />
62 </intent-filter>
Brian Muramatsu78d2c1d2010-08-16 15:22:30 -070063 <meta-data android:name="test_category" android:value="@string/test_category_sensors" />
Dan Morrill5df275b2010-08-11 12:19:19 -070064 </activity>
Dan Morrill98c56e62010-08-13 02:43:52 -070065
66 <activity android:name=".sensors.MagnetometerTestActivity" android:label="@string/snsr_mag_test"
Dan Morrillb26cc2f2010-08-26 16:21:52 -070067 android:screenOrientation="nosensor">
Dan Morrill98c56e62010-08-13 02:43:52 -070068 <intent-filter>
69 <action android:name="android.intent.action.MAIN" />
70 <category android:name="android.cts.intent.category.MANUAL_TEST" />
71 </intent-filter>
Brian Muramatsu78d2c1d2010-08-16 15:22:30 -070072 <meta-data android:name="test_category" android:value="@string/test_category_sensors" />
Dan Morrill98c56e62010-08-13 02:43:52 -070073 </activity>
Dan Morrill5df275b2010-08-11 12:19:19 -070074 </application>
75</manifest>