Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

After updating Android Studio to 3.3 V I am getting the following error:

enter image description here

Android Studio build fails

I have updated all the gradle dependencies.

Are there any solutions to this?

like image 672
primo Avatar asked Feb 07 '19 09:02

primo


2 Answers

I solved this problem by disabling instant run.

like image 134
Ayoub Avatar answered Sep 18 '22 19:09

Ayoub


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.

like image 34
Oscar Albert Avatar answered Sep 18 '22 19:09

Oscar Albert