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.
1 parent 7c0ab0f commit e5c6772Copy full SHA for e5c6772
src/android/SplashScreen.java
@@ -270,6 +270,10 @@ private void showSplashScreen(final boolean hideAfterDelay) {
270
271
lastHideAfterDelay = hideAfterDelay;
272
273
+ // Prevent to show the splash dialog if the activity is in the process of finishing
274
+ if (cordova.getActivity().isFinishing()) {
275
+ return;
276
+ }
277
// If the splash dialog is showing don't try to show it again
278
if (splashDialog != null && splashDialog.isShowing()) {
279
return;
0 commit comments