You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pressing the back button on Nexus 6 + Android 7.1.1 will generate an error
E AndroidRuntime: Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'void org.apache.cordova.CallbackContext.success(org.json.JSONObject)' on a null object reference
E AndroidRuntime: at com.hutchind.cordova.plugins.launcher.Launcher.onActivityResult(Launcher.java:475)
E AndroidRuntime: at org.apache.cordova.CordovaInterfaceImpl.onActivityResult(CordovaInterfaceImpl.java:152)
E AndroidRuntime: at org.apache.cordova.CordovaActivity.onActivityResult(CordovaActivity.java:358)
E AndroidRuntime: at android.app.Activity.dispatchActivityResult(Activity.java:6932)
E AndroidRuntime: at android.app.ActivityThread.deliverResults(ActivityThread.java:4085)
E AndroidRuntime: ... 11 more
In Nexus 6, launching the application in launcher.launch starts with a single task
Pressing the back button in this state will generate onActivityResult
Application is crashing with callback.success because callback is NULL
public void onActivityResult(int requestCode, int resultCode, Intent intent) {
super.onActivityResult(requestCode, resultCode, intent);
if (callback == null) {
return;
}
The text was updated successfully, but these errors were encountered:
randnetdd
changed the title
Nexus 6 7.1.1
Nexus 6 + 7.1.1 back button Error
Nov 17, 2017
randnetdd
changed the title
Nexus 6 + 7.1.1 back button Error
Nexus 6 + Android 7.1.1 back button Error
Nov 17, 2017
Pressing the back button on Nexus 6 + Android 7.1.1 will generate an error
In Nexus 6, launching the application in launcher.launch starts with a single task
Pressing the back button in this state will generate onActivityResult
Application is crashing with callback.success because callback is NULL
The text was updated successfully, but these errors were encountered: