com.android.build.transform.api.TransformException

后端 未结 25 2039
独厮守ぢ
独厮守ぢ 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条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-22 06:54

    A helpful answer if all above didn't work for you.

    Go to your app gradle file,

    Check all the dependency versions are mentioned with proper version code rather than any relative value like (com.example.demo:+)

    Previous - implementation 'com.google.api-client:google-api-client-android:+'

    After - implementation 'com.google.api-client:google-api-client-android:1.30.0'

提交回复
热议问题