Implementing Google Play Services In Android
I am going along with the tutorial here, and am getting there error The method getIntentSender() is undefined for the type ConnectionResult in the onConnectionFailed class. Full Co
Solution 1:
As of today and Google Play SDK version 15, this has been replaced with
result.startResolutionForResult(this, // your activity
RC_SIGN_IN);
as per the updated documentation.
Post a Comment for "Implementing Google Play Services In Android"