發生日期:2021-07-28

Android Studio 版本:4.2.2

錯誤描述

無法編譯,出現「Installed Build Tools revision 31.0.0 is corrupted」這個錯誤訊息

解決方式

修正 app/build.grade,將其中有關版本 31 的部分,全改回版本 30

.
.
.
android {
    compileSdkVersion 30
    buildToolsVersion "30.0.3"

    defaultConfig {
        applicationId "com.example.testapp01"
        minSdkVersion 19
        targetSdkVersion 30
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
        .
        .
        .
}

然後按下上方的 「Sync」,再編譯就正常了

Last modified: 2021-07-28

Author

Comments

Write a Reply or Comment

Your email address will not be published.