summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDianne Hackborn <hackbod@google.com>2010-10-21 19:20:49 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2010-10-21 19:20:49 -0700
commitba501785c7b298198d1c6e4787fd40e98f97da67 (patch)
tree218ec56806b8165727a85af7061a88fb1f26d5ec /tests
parentbf5efba238f81330f4b473e92b6931b85baa1cbc (diff)
parenta6d9c7c04c4b17d85ac70f4494777555655f3be1 (diff)
downloadframeworks_base-ba501785c7b298198d1c6e4787fd40e98f97da67.zip
frameworks_base-ba501785c7b298198d1c6e4787fd40e98f97da67.tar.gz
frameworks_base-ba501785c7b298198d1c6e4787fd40e98f97da67.tar.bz2
Merge "Implement issue #3116702: New manifest tags for supported screen sizes DO NOT MERGE" into gingerbread
Diffstat (limited to 'tests')
-rw-r--r--tests/DpiTest/AndroidManifest.xml6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/DpiTest/AndroidManifest.xml b/tests/DpiTest/AndroidManifest.xml
index 68ecc6e..a4d8c79 100644
--- a/tests/DpiTest/AndroidManifest.xml
+++ b/tests/DpiTest/AndroidManifest.xml
@@ -18,6 +18,12 @@
package="com.google.android.test.dpi">
<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="3" />
<supports-screens android:smallScreens="true" />
+ <compatible-screens>
+ <screen android:screenSize="small" android:screenDensity="ldpi" />
+ <screen android:screenSize="small" android:screenDensity="xhdpi" />
+ <screen android:screenSize="large" android:screenDensity="hdpi" />
+ <screen android:screenSize="xlarge" android:screenDensity="mdpi" />
+ </compatible-screens>
<application android:label="DpiTest">
<activity android:name="DpiTestActivity">
<intent-filter>