如何在Android Studio 3.0.1中更改构建工具版本?

ie3xauqp  于 2023-10-23  发布在  Android
关注(0)|答案(2)|浏览(164)

我刚刚将我的Android Studio从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。那么,为什么我的android工作室在我的电脑上安装了27版本的时候会寻找这个特定的版本(26)呢?另外,在哪里可以看到buildToolsVersion "26.0.2" and change it to buildToolsVersion“27.0.3”`?

ca1c2owp

ca1c2owp1#

您的项目正在查找生成工具26.0.2版,但您尚未将其下载并安装到计算机上。
要下载它,请转到Tools > Android > SDK Manager,然后单击新窗口顶部的“SDK Tools”选项卡。然后选择右下角的“显示包详细信息”复选框。最后,向下滚动到您看到26.0.2的位置,选中它旁边的复选框,然后单击“OK”以开始安装过程。
如果您想更改项目中的Build Tools版本,请在项目的build.gradle文件(在'app'模块中)中指定。打开文件,通过添加/更新“android”部分中的以下属性,添加或更新您要使用的Build Tools版本:

android {
    buildToolsVersion "27.0.3"
    ...
}
vfhzx4xs

vfhzx4xs2#

“Ctrl + Alt + Shift + S”也会将您重定向到android studio的“项目结构”,您可以选择更改构建工具版本。

相关问题