在成功构建之前,无法使用设计编辑器-构建失败

时间:2018-09-08 04:56:31

标签: android build.gradle

enter image description here

大家好,此问题的真正根源是什么?我已经与Gradle文件同步,但最终失败了。

4 个答案:

答案 0 :(得分:0)

  

使用低于4.6的版本

打开gradle-wrapper.properties文件并更改版本号。

例如,尝试4.4 as per the documentation

答案 1 :(得分:0)

无需降级,只需将此行粘贴到gradle.properties中就可以了

org.gradle.configureondemand=false

答案 2 :(得分:0)

在Android Studio 3.3.2中,我可以通过以下方式修复它,

File -> Sync Project with Gradle Files

答案 3 :(得分:-1)

转到文件 -> 项目结构 -> 模块(属性选项卡) -> 将编译 Sdk 版本和构建工具版本更改为当时可用的最新版本 -> 清理项目 -> 重建项目 -> 完成

I was facing the same issue

I updated the Compile Sdk Version and Build Tools Version to 30(latest at the time)

problem resolved