什么是Android SDK构建工具,平台工具和工具?
作者:互联网
我知道这是一个非常基本的问题.但我对原生的android开发很新,我无法绕过什么是什么.
我使用Android Standalone SDK而不使用Android Studio,因此请相应指导.
假设我想为API级别19构建我的应用程序.我需要安装什么级别的平台工具和构建工具.
这就是我目前所拥有的
因为我想为我安装的API 19构建.我是否需要拥有Android SDK版本19的构建工具,否则它们可以更高?
请告诉我,每个术语在外行人的条件中意味着什么.
-谢谢
解决方法:
Build-Tools is a component
of the Android SDK required for building Android apps. It’s installed
in the /build-tools/ directory
所以,构建工具是构建您的Android应用程序.这就像C项目的makefile.输出是一个APK文件.
Android SDK Tools is a component for the Android SDK. It includes the
complete set of development and debugging tools for Android. It is
included with Android Studio.
所以,Platform工具是所有与你拥有的android设备交互的工具,比如fastboot和adb.例如,要将apk安装到设备中,运行它,调试它,并从中grep一些文件,您需要先将设备连接到adb桥并在其上运行所有这些命令.
Let’s say that I want to build my app for API level 19. what level of
platform tools and build tools do I need to install.
基本上,你应该在这里拥有所有最新的东西.如果要部署API 19设备,则还应该安装Android SDK平台19.
我有一段时间没有触及那些东西,因为无论如何我安装了所有这些东西,所以我很感激修正.
标签:android,android-sdk-tools,android-build,android-sdk-2-3 来源: https://codeday.me/bug/20190717/1487365.html