Skip to content Skip to sidebar Skip to footer

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.

Solution 2:

Post a Comment for "Implementing Google Play Services In Android"