Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where is the Auth class -- Google Play Services 8.3.0

I'm going through the new documentation for implementing Google Play Services 8.3.0 on Android and it seems that I need to import com.google.android.gms.auth.api.Auth; but don't know which dependency to add to my build.gradle file. Any ideas?

like image 741
Alex White Avatar asked Nov 06 '15 19:11

Alex White


2 Answers

You'll want to add

com.google.android.gms:play-services-auth:8.3.0

to your build.gradle as per the setup guide

like image 155
ianhanniballake Avatar answered Oct 26 '22 02:10

ianhanniballake


For more recent things add this to your gradle

compile 'com.google.android.gms:play-services-auth:10.2.1'
like image 28
abbyt22 Avatar answered Oct 26 '22 00:10

abbyt22