安卓。如何正确设置应用程序的构建目标和最小 SDK 版本?
我想在我的应用程序中使用 API 级别 11 的类。在本例中我定义了构建目标的值? 应用程序的Build Target和SDK的最低版本有什么关系? 我将非常感谢您的帮助!
I want to use in my application classes from API Level 11. Which in this case I define value of Build Target?
How are related Build Target of application and the minimum version of SDK?
I would be very grateful for the help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Build Target 用于选择用于编译代码的平台版本的 android.jar。
minSdkVersion 在清单文件中定义,Android Market 使用它来过滤应用程序,它与编译时间或运行时行为无关
Build Target is used to choose the android.jar of the platform version which will be used to compile the code.
minSdkVersion is defined in the manifest file and used by Android Market to filter out apps, it has nothing to do with the compile time or runtime behaviour
您可以在 Android 清单中设置项目的最小 sdk 值
,如果您想指定将编译代码的特定模拟器或手机(在本例中为您询问的构建目标),请
问候!
注意:请记住,您构建的目标必须具有比您的 minSDK 版本更大或至少相同的值
You can set the minimum sdk value of your project inthe Android manifest
and if you want to specify a specific emulator or phone which will compile the code (in this case, the build target you are asking about) , go to
Greetings !
NB: Bear in mind that your built target must have a greater or at least the same value than your minSDK version