我刚刚将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”`?
答案 0 :(得分:20)
您的项目正在寻找Build Tools版本26.0.2,但您尚未下载并将其安装到您的计算机上。
要下载它,请转到工具&gt; Android&gt; SDK Manager,然后单击&#34; SDK工具&#34;选项卡位于新窗口的顶部。然后选择&#34;显示包详细信息&#34;右下角的复选框。最后,向下滚动到您看到的位置26.0.2,选中它旁边的复选框,然后单击&#34;确定&#34;开始安装过程。
如果要更改项目中的Build Tools版本,请在project的build.gradle文件中指定(在&#39; app&#39;模块中)。打开文件,通过在&#39; android&#39;中添加/更新以下属性来添加或更新您要使用的Build Tools版本。部分:
android {
buildToolsVersion "27.0.3"
...
}