com.android.build.transform.api.TransformException

后端 未结 25 2067
独厮守ぢ
独厮守ぢ 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:59

    In my case the Exception occurred because all google play service extensions are not with same version as follows

     compile 'com.google.android.gms:play-services-plus:9.8.0'
     compile 'com.google.android.gms:play-services-appinvite:9.8.0'
     compile 'com.google.android.gms:play-services-analytics:8.3.0'
    

    It worked when I changed this to

    compile 'com.google.android.gms:play-services-plus:9.8.0'
     compile 'com.google.android.gms:play-services-appinvite:9.8.0'
     compile 'com.google.android.gms:play-services-analytics:9.8.0'
    

提交回复
热议问题