Installed Build Tools revision 33.0.0 is corrupted. Remove and install again using the SDK Manager.

  • Post author:
  • Post category:其他


很多小伙伴安装好Android Studio后都会遇到如下报错:

Installed Build Tools revision 33.0.0 is corrupted. Remove and install again using the SDK Manager.

即使按照提示去SDK Manager中重新安装build tools,也无法解决这个错误。

原因分析:



Sync

project with gradle files时,会收到如下warning

Task :prepareKotlinBuildScriptModel UP-TO-DATE
Build-tool 33.0.0 is missing DX at D:\Programs\Android\sdk\build-tools\33.0.0\dx.bat
Build-tool 33.0.0 is missing DX at D:\Programs\Android\sdk\build-tools\33.0.0\dx.bat

这个warning说明build tools中缺少dx.bat这个批处理文件。

实际上是因为在31版本之后的build tools中,dx.bat被d8.bat替代了。

解决方案:

找到build tools目录中的

d8.bat

,复制粘贴一份后将文件名修改为

dx.bat

找到build tools目录中的

lib/d8.jar

,复制粘贴一份后将文件名修改为

dx.jar

重启Android Studio后即可解决问题。



版权声明:本文为weixin_55701118原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。