GooglePlusUtil cannot be resolved (Android)
android, compilation
Solution
The GooglePlusUtils class has been removed because you no longer need it. All of the existing error handling functionality has been integrated in a way that doesn't require developer intervention.
As an example of how you can migrate from using this (now deprecated) class, see the following change from the Google+ Photohunt Android client sample that resolves the issue:
https://github.com/gguuss/gplus-photohunt-client-android/commit/090c22b4721fde6859361aca210823822c218da8
Problem
I have an Android 2.2 targeted library project, whose `MyLibraryGooglePlusSocialPlugin.java` has a `import com.google.android.gms.plus.GooglePlusUtil;` being failed to compile (`GooglePlusUtil cannot be resolved`), while others are okay: ``` import com.google.android.gms.common.ConnectionResult; import com.google.android.gms.common.GooglePlayServicesClient; import com.google.android.gms.common.Scopes; import com.google.android.gms.plus.PlusClient; import com.google.android.gms.plus.PlusClient.OnPeopleLoadedListener; import com.google.android.gms.plus.PlusClient.OnPersonLoadedListener; import com.google.android.gms.plus.PlusShare; import com.google.android.gms.plus.model.people.Person; import com.google.android.gms.plus.model.people.PersonBuffer; ``` I've updated the related Google services through Android SDK manager today, and set the build path and dependencies.