On android platform if the app is in background and opened from the notification center app gets stuck on a white blank screen
Navigation.isAppLaunched()
.then(appLaunched => {
if (appLaunched) {
startApp();
}
new NativeEventsReceiver().appLaunched(startApp);
});
Try placing this in main activity:
@Override
public View createSplashLayout() {
View view = new View(this);
view.setBackgroundColor(Color.TRANSPARENT);
return view;
}
the issue is that app gets stuck there or crash when opened from Notification Center. I'm using react-native-push-notification for the push notifications
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.
If you believe the issue is still relevant, please test on the latest version and report back. Thank you for your contributions.
The issue has been closed for inactivity.
+1
@MounirDhahri why do you breath?
@Mubashirkhan did you manage to resolve your issue?
+1
Most helpful comment
the issue is that app gets stuck there or crash when opened from Notification Center. I'm using react-native-push-notification for the push notifications