com.android.build.transform.api.TransformException

后端 未结 25 2321
独厮守ぢ
独厮守ぢ 2020-11-22 06:14

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.go         


        
25条回答
  •  谎友^
    谎友^ (楼主)
    2020-11-22 06:38

    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

提交回复
热议问题