Retrieve account name with the NEW Google Drive API

后端 未结 3 1335
清歌不尽
清歌不尽 2020-12-20 07:05

I set up the authorization process for Google Play Services as described under https://developers.google.com/drive/android/auth

Now that the user has authorized the

3条回答
  •  萌比男神i
    2020-12-20 07:31

    Looks like data Intent is always null :(

    public void startResolutionForResult(Activity var1, int var2) throws SendIntentException {
        if(this.hasResolution()) {
            var1.startIntentSenderForResult(this.mPendingIntent.getIntentSender(), var2, (Intent)null, 0, 0, 0);
        }
    }
    

    This code is from ConnectionResult.class

提交回复
热议问题