本文介绍了Android应用程序不再可见通过在设备Android 1.5的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在Android Market上最后一次更新引起了我的应用程序将不再适用于Android 1.5的设备。
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" />
要这样:
<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"/>
我不知道哪里出了问题?任何提示将大大一个preciated!
I'm not sure what went wrong... Any tips will be greatly apreciated!
感谢您的帮助!
-Jona
推荐答案
我想这是由于属性机器人:targetSDKVersion,在API级别4首次推出,因此这将是API级别3的设备不可用
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
这篇关于Android应用程序不再可见通过在设备Android 1.5的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!