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.