Choosing the right API Level for my android application

前端 未结 6 564
渐次进展
渐次进展 2021-01-30 16:19

I currently have a application targeted at android 2.3 (api level 10), but went thinking that probably people using android 2.1/2.2 or older won\'t even be able to see

6条回答
  •  醉酒成梦
    2021-01-30 17:11

    The Best API Level is contains follows 1) The best API covers 100% market but all are not prefect so our app should be covered at least 90% with all devices .

    2)We have to care about backward compatibility issues and our code would adapt itself for upcoming versions.

    3) Using the new Android SDK is a requirement to use any of the new APIs added in that level. It should be emphasized ... It is ultimately a business decision on whether supporting an additional 3% of devices is worth the development and testing . 4) check out this link https://developer.android.com/guide/practices/compatibility.html#defined

    5) Finally choose the best API you will find best API

提交回复
热议问题