views:

54

answers:

1
A: 

Against which SDK version is the app developed? If you have 1.6 or higher you should read this: http://developer.android.com/guide/practices/screens_support.html

WarrenFaith
It is developed for android 2.1 (SDK 7). It tried things like:
<supports-screens android:largeScreens="true" android:normalScreens="true" android:smallScreens="true" android:anyDensity="true" /> </manifest>I also have<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="7" />Are there any other posiblitys?Thx
You can try: `<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="7" />`
Macarse
But then the app will crash in runtime when someone use it on android 1.5