cordova-plugin-accountkit
cordova-plugin-accountkit copied to clipboard
onActivityResult returning null intent
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,