What level of API must be loaded to develop an Android application

I am new to android and am going to download a new Android SDK, what level should choose 8 or the latest 21?

+1
source share
2 answers

you must download API 21 and install the Minimum SDK per your requirement. This way you can run your application from the early Froyo (if you keep the Minimum SDK as 8) phones on Lolipop.

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

+3
source

Look here You must download API v21 and use the minimum level of 15 or 16, because the versions below are not so distributed (API v10 = 7.4%, API v15 = 6.4%, API v16 = 18%).

+3
source

All Articles