Implementing google play services in android

后端 未结 2 1244
别跟我提以往
别跟我提以往 2021-01-01 10:53

I am going along with the tutorial here, and am getting there error The method getIntentSender() is undefined for the type ConnectionResult in the onConne

相关标签:
2条回答
  • 2021-01-01 11:33

    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.

    0 讨论(0)
  • 2021-01-01 11:55

    Hope it helps you

    result.getResolution().getIntentSender()
    
    0 讨论(0)
提交回复
热议问题