blob: 23b085dacdd3ceeab03bae22855826c2b4f68418 [file] [log] [blame]
Rajdeep Dua5dc8ba12012-01-30 15:22:40 +05301<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2012 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
17<manifest xmlns:android="http://schemas.android.com/apk/res/android"
18 package="com.android.cts.preference2">
19
Keun young Parka06798f2012-07-12 12:56:04 -070020 <uses-permission android:name="android.permission.DISABLE_KEYGUARD" />
Rajdeep Dua5dc8ba12012-01-30 15:22:40 +053021 <application>
22 <uses-library android:name="android.test.runner" />
23 <activity
24 android:name="android.preference2.cts.PreferenceFragmentActivity" >
25 </activity>
26 <activity
27 android:name="android.preference2.cts.PreferenceStubActivity" >
28 </activity>
29 <activity
30 android:name="android.preference2.cts.PreferenceFromCodeActivity" >
31 </activity>
32 <activity android:name="android.preference2.cts.PreferencesFromXml" />
33 <activity android:name="android.preference2.cts.PreferenceWithHeaders" />
Rajdeep Duaf88df2f2012-03-14 15:49:20 +053034 <activity android:name="android.preference2.cts.FragmentPreferences" />
Rajdeep Dua5dc8ba12012-01-30 15:22:40 +053035 </application>
36
37 <!-- This is a self-instrumenting test package. -->
Keun young Parka06798f2012-07-12 12:56:04 -070038 <instrumentation android:name="android.test.InstrumentationCtsTestRunner"
Rajdeep Dua5dc8ba12012-01-30 15:22:40 +053039 android:targetPackage="com.android.cts.preference2"
40 android:label="CTS Test Cases for android.preference"/>
41
42</manifest>
43