We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ca899f9 + 3060f24 commit b153600Copy full SHA for b153600
android/src/main/java/com/codegulp/invokeapp/RNInvokeApp.java
@@ -51,7 +51,7 @@ public void invokeApp(ReadableMap params) {
51
Class<?> activityClass = Class.forName(className);
52
Intent activityIntent = new Intent(reactContext, activityClass);
53
54
- activityIntent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
+ activityIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
55
reactContext.startActivity(activityIntent);
56
} catch(Exception e) {
57
Log.e(LOG_TAG, "Class not found", e);
0 commit comments