blob: a4d8c7973141728541c770784c6a9684c0e9084b [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2008 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.google.android.test.dpi">
Dianne Hackborn723738c2009-06-25 19:48:04 -070019 <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="3" />
20 <supports-screens android:smallScreens="true" />
Dianne Hackborna0b46c92010-10-21 15:32:06 -070021 <compatible-screens>
22 <screen android:screenSize="small" android:screenDensity="ldpi" />
23 <screen android:screenSize="small" android:screenDensity="xhdpi" />
24 <screen android:screenSize="large" android:screenDensity="hdpi" />
25 <screen android:screenSize="xlarge" android:screenDensity="mdpi" />
26 </compatible-screens>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080027 <application android:label="DpiTest">
Dianne Hackborna53b8282009-07-17 11:13:48 -070028 <activity android:name="DpiTestActivity">
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080029 <intent-filter>
30 <action android:name="android.intent.action.MAIN" />
Dianne Hackborna53b8282009-07-17 11:13:48 -070031 <category android:name="android.intent.category.LAUNCHER" />
32 </intent-filter>
33 </activity>
Dianne Hackborn2784ff02009-07-18 17:13:29 -070034 <activity android:name="DpiTestNoCompatActivity" android:label="DpiTestNoCompat">
Dianne Hackborna53b8282009-07-17 11:13:48 -070035 <intent-filter>
36 <action android:name="android.intent.action.MAIN" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080037 <category android:name="android.intent.category.LAUNCHER" />
38 </intent-filter>
39 </activity>
40 </application>
41</manifest>