安卓。如何正确设置应用程序的构建目标和最小 SDK 版本?

发布于 2025-01-03 03:47:37 字数 94 浏览 2 评论 0原文

我想在我的应用程序中使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

请止步禁区 2025-01-10 03:47:38

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

肤浅与狂妄 2025-01-10 03:47:38

您可以在 Android 清单中设置项目的最小 sdk 值

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="tfe.rma.ciss.be"
      android:versionCode="1"
      android:versionName="1.0">
      <uses-sdk android:minSdkVersion="8" />
      </manifest>

,如果您想指定将编译代码的特定模拟器或手机(在本例中为您询问的构建目标),请

  1. 右键单击您的项目
  2. 选择,点击属性
  3. ,选择Android
  4. ,选择模拟器的api

问候!

注意:请记住,您构建的目标必须具有比您的 minSDK 版本更大或至少相同的值

You can set the minimum sdk value of your project inthe Android manifest

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="tfe.rma.ciss.be"
      android:versionCode="1"
      android:versionName="1.0">
      <uses-sdk android:minSdkVersion="8" />
      </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

  1. right click on your project
  2. choose, click on properties
  3. choose Android
  4. choose the api of the emulator

Greetings !

NB: Bear in mind that your built target must have a greater or at least the same value than your minSDK version

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文