Are android apps backwards compatible?

拟墨画扇 提交于 2019-11-30 07:02:36
Graham Borland

It depends what you have in the minSdkVersion field in your AndroidManifest.xml. If it is set to 4 or lower, then it will be visible to people using 1.6.

There's a good explanation here.

Eric Cloninger

The android SDK is completely backward compatible using the mechanism that @Graham mentions. The other question will be "how far should you go". Use this graph to see the population of users on each platform level.

http://developer.android.com/resources/dashboard/platform-versions.html

This is pure opinion, but I would advise starting your app at API levels 7 or 8. The benefits of the APIs in EClair+ are worth losing this 0.4% still on 1.x devices.

If you are targeting 2.2, users with earlier SDK will not be able to download it.

They will see: This app is Incompatible with your device XXXXXXX

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