我担心我应该将compileSdkVersion,minSdkVersion和targetSdkVersion设置为什么.
>我首先关心的是,如果我将compileSdkVersion设置为23,这是最新的,那么旧设备能够运行它吗?
>我如何确切知道我的minSdkVersion应该是什么,以确保运行较低api或版本的手机无法访问它(我不想将最小sdk设置得太高,因为这会阻止可能运行的手机该应用程序)?
>我应该如何设置targetSdkVersion?
解决方法
I set the compileSdkVersion to be 23 which is the latest right now,will older device be able to run it?
是. compileSdkVersion本身与哪些设备无法运行您的应用程序无关.通常,您将其设置为Android SDK的最新版本.
How do I exactly know what should my minSdkVersion be in order to make sure that phone running lower api or version be unable to access it?
通常,当您尝试使用比minSdkVersion更新的东西时,开发工具会立即发出警告.您可以运行完整的Lint检查以定期重新确认.
How should I set my targetSdk?
在没有任何特别理由选择其他内容的情况下,我通常会在创建项目时选择最新值或次最新值(例如,现在为22或23). targetSdkVersion有助于向后兼容,通常我的描述是“它是您在编写代码时考虑的Android版本”.