Implementing google play services in android

后端 未结 2 1245
别跟我提以往
别跟我提以往 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.

提交回复
热议问题