The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | <?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 Hackborn | 723738c | 2009-06-25 19:48:04 -0700 | [diff] [blame] | 19 | <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="3" /> |
| 20 | <supports-screens android:smallScreens="true" /> |
Dianne Hackborn | a6d9c7c | 2010-10-21 15:32:06 -0700 | [diff] [blame] | 21 | <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 Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 27 | <application android:label="DpiTest"> |
Dianne Hackborn | a53b828 | 2009-07-17 11:13:48 -0700 | [diff] [blame] | 28 | <activity android:name="DpiTestActivity"> |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 29 | <intent-filter> |
| 30 | <action android:name="android.intent.action.MAIN" /> |
Dianne Hackborn | a53b828 | 2009-07-17 11:13:48 -0700 | [diff] [blame] | 31 | <category android:name="android.intent.category.LAUNCHER" /> |
| 32 | </intent-filter> |
| 33 | </activity> |
Dianne Hackborn | 2784ff0 | 2009-07-18 17:13:29 -0700 | [diff] [blame] | 34 | <activity android:name="DpiTestNoCompatActivity" android:label="DpiTestNoCompat"> |
Dianne Hackborn | a53b828 | 2009-07-17 11:13:48 -0700 | [diff] [blame] | 35 | <intent-filter> |
| 36 | <action android:name="android.intent.action.MAIN" /> |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 37 | <category android:name="android.intent.category.LAUNCHER" /> |
| 38 | </intent-filter> |
| 39 | </activity> |
| 40 | </application> |
| 41 | </manifest> |