org.gradle.execution.MultipleBuildFailures: Build completed with 1 failures [closed]

安稳与你 提交于 2019-11-29 16:39:46

问题


After updating Andriod Studio to 3.3v I am getting following error:

I have updated all the gradle dependencies.

Are there any solutions to this?


回答1:


I solved this problem by disabling instant run.




回答2:


I had a similar problem, when I added a ButterKnife library:

implementation 'com.jakewharton:butterknife:10.0.0'
annotationProcessor 'com.jakewharton:butterknife-compiler:10.0.0'

But, then I notice that version did not work very well and changed it by (GRADLE):

implementation 'com.jakewharton:butterknife:8.4.0'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.4.0'

Maybe you need to check the version of some library you are using.




回答3:


I had the exact same error.

I had changed the parameters of one of my class constructors - I added another parameter to the constructor but did not change where I was previously using that constructor.



来源:https://stackoverflow.com/questions/54569872/org-gradle-execution-multiplebuildfailures-build-completed-with-1-failures

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!