com.android.build.transform.api.TransformException

saeed shahini picture saeed shahini · Sep 27, 2015 · Viewed 238.8k times · Source

I am trying to integrate Google sign in, in my app, I added these libraries:

compile 'com.google.android.gms:play-services-identity:8.1.0'
compile 'com.google.android.gms:play-services-plus:8.1.0'

Also add this to project build gradle:

classpath 'com.google.gms:google-services:1.4.0-beta3'

Also add plugin to app build gradle:

apply plugin: 'com.google.gms.google-services'

then add required permissions but when I try to run my app, received this error:

    Error:Execution failed for task ':app:transformClassesWithDexForDebug'.
    com.android.build.transform.api.TransformException: com.android.ide.common.process.ProcessException: 
    org.gradle.process.internal.ExecException: Process 'command 'C:\Program Files\Java\jdk1.8.0\bin\java.exe'' finished with non-zero exit value 2

Answer

JuliusScript picture JuliusScript · Sep 27, 2015

Try adding multiDexEnabled true to your app build.gradle file.

 defaultConfig {
    multiDexEnabled true
}

EDIT:

Try Steve's answer first. In case it happens frequently or first step didn't help multiDexEnabled might help. For those who love to dig deeper here is couple similar issues (with more answers):

:app:dexDebug ExecException finished with non-zero exit value 2

Error:Execution failed for task ':app:dexDebug'. com.android.ide.common.process.ProcessException