如何更改 Android Studio 3.0.1 中的构建工具版本?
How to change build tools version in Android Studio 3.0.1?
我刚刚将我的 Android 工作室从 2.3 升级到 3.0.1。但是我收到此错误消息(我已经安装了 API 27 )并且不知道如何修复它,因为我在新版本的 android studio 中找不到构建工具版本!
Error:Failed to find Build Tools revision 26.0.2 <a href="install.build.tools">Install Build Tools 26.0.2 and sync project</a>
gradle个文件已更改,项目结构也只有一个选项卡!
编辑:
这是`app/build.gradle:
的内容
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
defaultConfig {
applicationId "com.m.finalocr"
minSdkVersion 21
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.0.2'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
}
如你所见,里面没有buildToolsVersion
。那么,当我的计算机上安装了 27 版本时,为什么我的 android 工作室会寻找这个特定版本 (26)?另外,我在哪里可以看到 buildToolsVersion "26.0.2" and change it to
buildToolsVersion "27.0.3" ` ?
您的项目正在寻找 Build Tools 版本 26.0.2,但您尚未下载并安装到您的计算机上。
要下载它,请转到工具 > Android > SDK 管理器,然后单击新 window 顶部的 "SDK Tools" 选项卡。然后 select right-hand 下角的 "Show Package Details" 复选框。最后,向下滚动到您看到 26.0.2 的位置,选中它旁边的复选框,然后单击 "OK" 开始安装过程。
如果您想更改项目中的构建工具版本,请在项目的 build.gradle 文件(在 'app' 模块中)中指定。打开文件并通过 adding/updating 'android' 部分中的以下 属性 添加或更新您要使用的构建工具版本:
android {
buildToolsVersion "27.0.3"
...
}
我刚刚将我的 Android 工作室从 2.3 升级到 3.0.1。但是我收到此错误消息(我已经安装了 API 27 )并且不知道如何修复它,因为我在新版本的 android studio 中找不到构建工具版本!
Error:Failed to find Build Tools revision 26.0.2 <a href="install.build.tools">Install Build Tools 26.0.2 and sync project</a>
gradle个文件已更改,项目结构也只有一个选项卡!
编辑: 这是`app/build.gradle:
的内容apply plugin: 'com.android.application'
android {
compileSdkVersion 27
defaultConfig {
applicationId "com.m.finalocr"
minSdkVersion 21
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.0.2'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
}
如你所见,里面没有buildToolsVersion
。那么,当我的计算机上安装了 27 版本时,为什么我的 android 工作室会寻找这个特定版本 (26)?另外,我在哪里可以看到 buildToolsVersion "26.0.2" and change it to
buildToolsVersion "27.0.3" ` ?
您的项目正在寻找 Build Tools 版本 26.0.2,但您尚未下载并安装到您的计算机上。
要下载它,请转到工具 > Android > SDK 管理器,然后单击新 window 顶部的 "SDK Tools" 选项卡。然后 select right-hand 下角的 "Show Package Details" 复选框。最后,向下滚动到您看到 26.0.2 的位置,选中它旁边的复选框,然后单击 "OK" 开始安装过程。
如果您想更改项目中的构建工具版本,请在项目的 build.gradle 文件(在 'app' 模块中)中指定。打开文件并通过 adding/updating 'android' 部分中的以下 属性 添加或更新您要使用的构建工具版本:
android {
buildToolsVersion "27.0.3"
...
}