Which API level should i download to develop an android app

ぃ、小莉子 提交于 2019-12-03 21:41:39

you should download API 21 obviously and set Minimum SDK as per your requirement. That way you will be able to run your app from early Froyo(If you keep Minimum SDK as 8) phones to Lolipop ones.

So when you start with Android Development you will find configuration options in AndroidManifest.xml like MinimumSDK version(minimum version of android you want to support), TargetSDK(max version of OS u want to support) version and CompileSDK(usually equal to target SDk version) version.

Take a look here You should download API v21 and use min level 15 or 16 because versions below are already not so much distributed (API v10 = 7.4%, API v15 = 6.4%, API v16 = 18%).

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