Is there a way to set app compatibility per android version (not API level) in the play store?

随声附和 提交于 2019-12-07 23:33:09

问题


I have an app that works on Android 2.3.6, but will cause disruptions if deployed on 2.3.3. I will obviously implement some mechanism to stop it from working on such devices, but is there a way to mark an app compatible with 2.3.6 but incompatible with 2.3.3, so the play store and possibly package installer would detect the incompatibilty? (Both versions are API level 10, otherwise this would be easy.)


回答1:


check (String androidOS = Build.VERSION.RELEASE) while starting , then close or take action manually. As far as i know , i think if api levels are same , you cant do it via manifest



来源:https://stackoverflow.com/questions/16381416/is-there-a-way-to-set-app-compatibility-per-android-version-not-api-level-in-t

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