Android Studio - GoogleAuthUtil cannot be resolved

lukegjpotter picture lukegjpotter · Aug 7, 2013 · Viewed 9.5k times · Source

I'm using Android Studio.

I need to use Google Accounts, but I'm getting an error.

Cannot resolve symbol 'GoogleAuthUtil'

I've imported the four main imports.

import com.google.android.gms.auth.GoogleAuthException;
import com.google.android.gms.auth.GoogleAuthUtil;
import com.google.android.gms.auth.GooglePlayServicesAvailabilityException;
import com.google.android.gms.auth.UserRecoverableAuthException;

Here's how I'm calling it.

final Account[] accounts = mAccountManager.getAccountsByType(GoogleAuthUtil.GOOGLE_ACCOUNT_TYPE);

My AndroidManifest.xml has the following.

<uses-sdk
    android:minSdkVersion="15"
    android:targetSdkVersion="18" />

<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.USE_CREDENTIALS" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.NETWORK" />

I selected Android 4.3 (Revision 18) Google APIs when starting my project.

Should I have the GooglePlayServices.jar in my libs folder? How do I do this in Android Studio?

I've tried restarting Android Studio, after trying to follow steps in this other question about Eclipse: GoogleAuthUtil cannot be resolved.

Answer

IgorGanapolsky picture IgorGanapolsky · Jul 19, 2016

You need to add play services auth to your build.gradle's dependencies like this: com.google.android.gms:play-services-auth:10.2.0

See more here: https://developers.google.com/android/guides/setup