我用的是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!项目,真的不应该这么难。
针对android 12目标sdk API 31
compileSdkVersion 31
buildToolsVersion 31.1.0
Android gradle插件(AGP)应该有最低版本设置为
7.0.2 or above
Android gradle包装版本可以设置
gradle-7.2-bin.zip
通过上述配置,构建错误将得到解决,您无需将构建工具版本降级到30.0.2
此外,如果你面临和intellij注释相关的构建错误,在你的app/build中添加以下配置。gradle文件
configurations {
compile.exclude group: 'com.intellij', module: 'annotations'
implementation.exclude group: 'com.intellij', module:'annotations'
}
首先,我在Android Studio 4.2.2中遇到了这个问题,你不需要将SDK构建工具从31降级到30或更改编译SDK版本。
主要问题是SDK构建工具31中缺少两个文件:
dx.bat
dx.jar
解决方案是,这些文件在文件位置中命名为d8,因此将其名称更改为dx将解决这个错误。
步骤如下。
对于Windows
去地点
“C: \ \用户当地\ AppData \ \ Android用户\ Sdk \构建工具\ 31.0.0”
找到一个名为d8.bat的文件。这是一个Windows批处理文件。
重命名d8.bat为dx.bat。
在lib文件夹(“C:\Users\user\AppData\Local\Android\Sdk\build-tools\31.0.0\lib”)
将d8.jar重命名为dx.jar
记住AppData是一个隐藏文件夹。打开隐藏项以查看AppData文件夹。
适用于macOS或Linux
在终端运行如下命令:
# change below to your Android SDK path
cd ~/Library/Android/sdk/build-tools/31.0.0 \
&& mv d8 dx \
&& cd lib \
&& mv d8.jar dx.jar
现在运行您的项目。