Android 构建工具能否始终保持最新状态(而不是指定版本)

Can Android Build Tools always be up to date (instead of specifying version)

好的,假设您有一个应用程序,您使用构建工具版本 21 构建的。现在,版本 24 已经发布。您的应用程序运行良好。但是,您的应用程序在构建时可能没有构建工具的优化和更改。

android {
    compileSdkVersion 21
    buildToolsVersion "21.1.2"
...

我的问题是,有没有办法直接将 buildToolsVersion 设置为最新版本。

你是否应该随着时间的推移更新构建工具。这有什么区别吗?


只是,要明确一点,我并不是要征求意见。更多处理构建工具更新时的标准模型是什么。我应该等到我需要新版本的东西还是继续更新优化

You should always keep your Build Tools component updated by downloading the latest version using the Android SDK Manager. By default, the Android SDK uses the most recent downloaded version of the Build Tools. If your projects depend on older versions of the Build Tools, the SDK Manager allows you to download and maintain separate versions of the tools for use with those projects.

发件人:Android Build Tool

编辑

我没有测试过,但是有脚本可以做到。

可能对你有帮助:SDK and Build Tools Autodetect