com.android.build.transform.api.TransformException

后端 未结 25 2531
独厮守ぢ
独厮守ぢ 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 07:01

    If the different dependencies have a same jar also cause this build error.

    For example:

    compile('com.a.b:library1');
    compile('com.c.d:library2');
    

    If "library1" and "library2" has a same jar named xxx.jar, this will make such an error.

提交回复
热议问题