我用的是Android Studio 4.2.2。我创建了一个新项目,还没有添加任何东西到启动器代码,每当我点击构建或运行,我得到这个错误:

已安装的构建工具版本31.0.0已损坏。使用SDK管理器删除并重新安装。

我看了其他帖子的建议,但这些解决方案都不起作用。以下是我的尝试:

SDK Manager → SDK Tools → check "Show package details", uncheck 31.0.0, and click "Apply" → Uninstall 31.0.0 → check 31.0.0 and reinstall it In SDK Manager, deselect 31.0.0 and try installing an older version (e.g., I've tried 30.0.3) and update "buildToolsVersion" in build.gradle to the installed version Went to Project Structure → Properties and verified that 31.0.0 is selected for "Build Tools Version" and "Compiled SDK Version" Manually remove the stuff in the build-tools folder; i.e., rm -rf /path/to/android/sdk/build-tools/31.0.0 (it doesn't end in "-rc" like some other posts have described) Restart Android Studio Reinstall Android Studio

我是一个Android新手,只是想设置一个Hello, World!项目,真的不应该这么难。


当前回答

更改这些设置后,它似乎可以正常工作。我从SDK管理器下载了SDK 30版本。

android {
    compileSdkVersion 30
    buildToolsVersion "30.0.3"
    defaultConfig {
        applicationId "com.anurag.myapplication"
        minSdkVersion 23
        targetSdkVersion 30
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

其他回答

为了解决这个问题,首先去以下位置:

C:\Users\User\AppData\Local\Android\Sdk\构建工具\ 31.0.0

然后找到文件d8 (Windows批处理文件)并将其重命名为dx。

然后转到:

C:\Users\User\AppData\Local\Android\Sdk\构建工具\ 31.0.0 \ lib

然后找到文件d8(可执行Jar文件)并重命名为dx。

你的问题现在可以解决了。

对于那些正在使用Azure DevOps并需要30.0.3版本的人来说,你需要卸载31.0.0版本

我将此添加到我的管道中,以使我的构建再次工作。

  - bash: |
      $ANDROID_SDK_ROOT/tools/bin/sdkmanager --uninstall 'build-tools;31.0.0'

环境变量$ANDROID_SDK_ROOT在预设变量中

更改这些设置后,它似乎可以正常工作。我从SDK管理器下载了SDK 30版本。

android {
    compileSdkVersion 30
    buildToolsVersion "30.0.3"
    defaultConfig {
        applicationId "com.anurag.myapplication"
        minSdkVersion 23
        targetSdkVersion 30
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

这里有太多错误和误导性的答案。

如果你使用的是Beta SDK,你唯一需要做的就是安装最新的Android Studio Beta版本。最新的Android Studio Beta支持最新的AGP,正确地支持SDK 31。

你不需要指定android。Build Tools 27.0.3或更高版本的buildToolsVersion。

Build Tools 27.0.3或更高版本。记住,你不再需要 属性指定生成工具的版本 android。buildToolsVersion属性—插件使用最小值 默认为所需版本。

源(Developers.Android)