我有一个应用程序,我只想在ICS上安装.所以我设置了min和max sdk版本,如下所示.
理想情况下,这应该工作.但有些如何能够在Jellybean版本上安装.
ICS(API 14-15)
JellBean(API 16-18)
我在这里想念的是什么?请帮忙
最佳答案
根据documentation:
原文链接:https://www.f2er.com/android/430995.htmlFuture versions of Android (beyond Android 2.0.1) will no longer check
or enforce the maxSdkVersion attribute during installation or
re-validation. Google Play will continue to use the attribute as a
filter,however,when presenting users with applications available for
download.
看到的行为是预期的.但是,如果您发布到Google Play,则会过滤该应用程序.
除非你有一些绝对只需要较旧API的功能(想到飞机模式),否则这种限制并没有多大用处.
如果您担心非Google Play来源或用户侧载应用,您可以随时对Android版本进行运行时检查,并限制功能或关闭应用.
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLYBEAN){
//do something about the Android version being too new
}