My last update on the Android Market caused my application to be no longer available to Android 1.5 devices.
I have changed the following:
<supports-screens android:anyDensity="true" />
<uses-sdk android:minSdkVersion="3" />
To this:
<uses-sdk android:minSdkVersion="3开发者_JS百科" android:targetSdkVersion="9"/>
<!-- Support all screen types and allow resizing of the layout -->
<supports-screens
android:anyDensity="true"
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="false"
android:xlargeScreens="false"/>
I'm not sure what went wrong... Any tips will be greatly apreciated!
Thanks for the help!
-Jona
I assume it is due to the attribute "android:targetSDKVersion" was first introduced in API level 4 and therefore it will be unavailable for API level 3 devices
精彩评论