Android App no longer visible by Android 1.5 on devices

↘锁芯ラ 提交于 2019-12-24 06:03:28

问题


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" 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


回答1:


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



来源:https://stackoverflow.com/questions/4952197/android-app-no-longer-visible-by-android-1-5-on-devices

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!