cordova-plugin-accountkit icon indicating copy to clipboard operation
cordova-plugin-accountkit copied to clipboard

onActivityResult returning null intent

Open MaximeLassalleHub opened this issue 8 years ago • 0 comments
trafficstars

Hi, When login with email AND opening my email inside the app (not opening the email outside afer pausing my app), the callback function is never called due to this condition:

  // Sometimes intent is null what crashes the app. This is a workaround rather than a solution.
    if (requestCode != APP_REQUEST_CODE || intent == null) {
      return;
    }

Is the issue on the FB DK side?

Thank you,

MaximeLassalleHub avatar Jun 06 '17 15:06 MaximeLassalleHub