react-native:如何更新构建工具 23.0.2?
react-native: how to update to build tools 23.0.2?
当构建生产、签名、apk 时,我注意到输出中的这些行:
Running dex in-process requires build tools 23.0.2.
For faster builds update this project to use the latest build tools.
我(想)记得 android 构建工具的确切版本是 23.0.1 是强制性的。
我必须做什么才能更新项目?
更新
我卸载了 build-tools 23.0.1 并安装了 23.0.3。
然后我按照 sfratini 的建议更新了 build.gradle
文件,但我在构建时得到了这个:
Checking the license for package Android SDK Build-Tools 23.0.1 in C:\Users\realtebo\AppData\Local\Android\Sdk\licenses
License for package Android SDK Build-Tools 23.0.1 accepted.
Preparing "Install Android SDK Build-Tools 23.0.1".
当然,使用最新构建工具的建议消失了,但我不明白为什么会自动强制安装旧构建工具。
目前我实际上使用的是 23.0.3,没有任何问题。只需更新您的 gradle 文件:
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
如果您将光标放在版本上,AS 甚至可能会提示您更新版本。
当构建生产、签名、apk 时,我注意到输出中的这些行:
Running dex in-process requires build tools 23.0.2.
For faster builds update this project to use the latest build tools.
我(想)记得 android 构建工具的确切版本是 23.0.1 是强制性的。
我必须做什么才能更新项目?
更新
我卸载了 build-tools 23.0.1 并安装了 23.0.3。
然后我按照 sfratini 的建议更新了 build.gradle
文件,但我在构建时得到了这个:
Checking the license for package Android SDK Build-Tools 23.0.1 in C:\Users\realtebo\AppData\Local\Android\Sdk\licenses
License for package Android SDK Build-Tools 23.0.1 accepted.
Preparing "Install Android SDK Build-Tools 23.0.1".
当然,使用最新构建工具的建议消失了,但我不明白为什么会自动强制安装旧构建工具。
目前我实际上使用的是 23.0.3,没有任何问题。只需更新您的 gradle 文件:
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
如果您将光标放在版本上,AS 甚至可能会提示您更新版本。