Cannot resolve GoogleSignIn and GoogleSignInClient

后端 未结 5 515
故里飘歌
故里飘歌 2021-01-17 10:02

I am not able to use GoogleSignIn(com.google.android.gms.auth.api.signin.GoogleSignIn ) and GoogleSignInClient(com.google.android.gms.auth.api.signin.GoogleSign

5条回答
  •  旧时难觅i
    2021-01-17 10:47

    I was having the same issue

    GoogleSignIn and GoogleSignInClient were introduced in version Google Play services SDK version 11.6. In older versions GoogleApiClient was used.

    So try changing the compile 'com.google.android.gms:play-services-auth:11.4.2' to 'com.google.android.gms:play-services-auth:12.0.1' in dependencies

    dependencies { compile 'com.google.android.gms:play-services-auth:12.0.1' }

提交回复
热议问题