Return-Path: X-Original-To: apmail-cordova-issues-archive@minotaur.apache.org Delivered-To: apmail-cordova-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id B2AB219450 for ; Wed, 9 Mar 2016 22:24:41 +0000 (UTC) Received: (qmail 93529 invoked by uid 500); 9 Mar 2016 22:24:41 -0000 Delivered-To: apmail-cordova-issues-archive@cordova.apache.org Received: (qmail 93509 invoked by uid 500); 9 Mar 2016 22:24:41 -0000 Mailing-List: contact issues-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list issues@cordova.apache.org Received: (qmail 93290 invoked by uid 99); 9 Mar 2016 22:24:41 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Mar 2016 22:24:41 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 1D87D2C1F5C for ; Wed, 9 Mar 2016 22:24:41 +0000 (UTC) Date: Wed, 9 Mar 2016 22:24:41 +0000 (UTC) From: "ASF GitHub Bot (JIRA)" To: issues@cordova.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (CB-10692) [Android] SplashScreen plugin crashes due to race condition on hide MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/CB-10692?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15188196#comment-15188196 ] ASF GitHub Bot commented on CB-10692: ------------------------------------- Github user dpolivy commented on the pull request: https://github.com/apache/cordova-plugin-splashscreen/pull/86#issuecomment-194537453 @daserge Great, thanks for merging! > [Android] SplashScreen plugin crashes due to race condition on hide > ------------------------------------------------------------------- > > Key: CB-10692 > URL: https://issues.apache.org/jira/browse/CB-10692 > Project: Apache Cordova > Issue Type: Bug > Components: Plugin SplashScreen > Affects Versions: 3.2.0 > Reporter: Dan Polivy > Labels: android, pendingPR, triaged > > On Android, there is a small race condition in the code to hide the splash screen when a fade out is used. It may only be visible in certain edge cases, but the net result is that the app will crash. > Specifically, if multiple calls come in to {{removeSplashScreen}} in a row, it's possible for the first call to null out {{splashImageView}} before the second call uses it (but after the second call tests for {{splashDialog == null}}), because of the animation delay. > Crashing code: https://github.com/apache/cordova-plugin-splashscreen/blob/master/src/android/SplashScreen.java#L219 > My repro for this scenario is due to having a native dialog box that appears if we have a network connection error when trying to connect to the starting URL (in my case, it is a remote URL). The dialog box has a 'retry' button which allows the user to retry the network request. When the user does this, we tell the webview to load a new URL; the webview then re-initializes the plugin manager, which in turn sends onPause and onDestroy events to the Splash Screen plugin. It's this sequence of events, which, in quick succession, can trigger the crash. -- This message was sent by Atlassian JIRA (v6.3.4#6332) --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org For additional commands, e-mail: issues-help@cordova.apache.org