You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by GitBox <gi...@apache.org> on 2020/06/05 09:50:24 UTC

[GitHub] [cordova-plugin-splashscreen] antikalk opened a new issue #268: (iOS) cordova-ios@6.0.0 - unable to click anything in the app after the splashscreen is hidden

antikalk opened a new issue #268:
URL: https://github.com/apache/cordova-plugin-splashscreen/issues/268


   # Bug Report
   
   ## Problem
   After upgrading to cordova-ios@6.0.0 I am unable to click anything in my app after the splashscreen is hidden (using navigator.splashscreen.hide()). When removing cordova-plugin-splashscreen I am able to click everything again, but the splashscreen hides to early.
   
   ### What is expected to happen?
   Splash Screen should hide and the user should be able to perform click events in the app.
   
   ### What does actually happen?
   Splash Screen correctly hides but the user is unable to click anything in the app. It feels like there is an invisible layer overlaying the whole app.
   
   ## Information
   
   ### Command or Code
   Config: `
       <preference name="AutoHideSplashScreen" value="false"/>
   `
   JS: `
   initApp().then(() => {
     navigator.splashscreen.hide();
   });
   `
   
   ### Environment, Platform, Device
   Platform iOS
   
   ### Version information
   cordova-ios: 6.0.0
   cordova-plugin-splashscreen: 5.0.3
   
   
   ## Checklist
   - [x] I searched for existing GitHub issues
   - [x] I updated all Cordova tooling to most recent version
   - [x] I included all the necessary information above
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-plugin-splashscreen] FireLizard commented on issue #268: (iOS) cordova-ios@6.0.0 - unable to click anything in the app after the splashscreen is hidden

Posted by GitBox <gi...@apache.org>.
FireLizard commented on issue #268:
URL: https://github.com/apache/cordova-plugin-splashscreen/issues/268#issuecomment-641950648


   Do you need some more info about my system? I'm using an iPhone 7 with iOS 13.3.1.
   What do you use and what does `cordova info` tells you?


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-plugin-splashscreen] antikalk edited a comment on issue #268: (iOS) cordova-ios@6.0.0 - unable to click anything in the app after the splashscreen is hidden

Posted by GitBox <gi...@apache.org>.
antikalk edited a comment on issue #268:
URL: https://github.com/apache/cordova-plugin-splashscreen/issues/268#issuecomment-641944958


   @FireLizard okay, that is weird... I do not experience the "unable to click anything" issue anymore (cordova@9.0.0, cordova-ios@6.0.0, cordova-plugin-splashscreen@5.0.4). With cordova-ios@6.0.0 and cordova-plugin-splashscreen@5.0.4 this plugin is not installed for the ios platform anymore, as the splashscreen code should now be included in cordova-ios. 
   
   See cordova-prepare message: "Plugin doesn't support this project's cordova-ios version. cordova-ios: 6.0.0, failed version requirement: <6.0.0". 
   
   Did you clear your platform/plugin folders after updating the plugin?


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-plugin-splashscreen] antikalk edited a comment on issue #268: (iOS) cordova-ios@6.0.0 - unable to click anything in the app after the splashscreen is hidden

Posted by GitBox <gi...@apache.org>.
antikalk edited a comment on issue #268:
URL: https://github.com/apache/cordova-plugin-splashscreen/issues/268#issuecomment-643117311


   @erisu I tested again using cordova-plugin-splashscreen@5.0.4 + cordova-ios master and everything looks good to me now :)


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-plugin-splashscreen] FireLizard commented on issue #268: (iOS) cordova-ios@6.0.0 - unable to click anything in the app after the splashscreen is hidden

Posted by GitBox <gi...@apache.org>.
FireLizard commented on issue #268:
URL: https://github.com/apache/cordova-plugin-splashscreen/issues/268#issuecomment-639432529


   same problem.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-plugin-splashscreen] antikalk commented on issue #268: (iOS) cordova-ios@6.0.0 - unable to click anything in the app after the splashscreen is hidden

Posted by GitBox <gi...@apache.org>.
antikalk commented on issue #268:
URL: https://github.com/apache/cordova-plugin-splashscreen/issues/268#issuecomment-639536926


   This might be related to PR #263 as the current version of this plugin still provides the iOS SplashScreen code, which should already be provided with cordova-ios@^6.0.0.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-plugin-splashscreen] FireLizard commented on issue #268: (iOS) cordova-ios@6.0.0 - unable to click anything in the app after the splashscreen is hidden

Posted by GitBox <gi...@apache.org>.
FireLizard commented on issue #268:
URL: https://github.com/apache/cordova-plugin-splashscreen/issues/268#issuecomment-641940967


   Sorry but it does not solve the problem :(
   
   ```
   $ npm ls cordova cordova-ios cordova-plugin-splashscreen
   my-project@0.1.0 ~
   ├── cordova@9.0.0 
   ├── cordova-ios@5.1.1
   └── cordova-plugin-splashscreen@5.0.4
   ```


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-plugin-splashscreen] filsv commented on issue #268: (iOS) cordova-ios@6.0.0 - unable to click anything in the app after the splashscreen is hidden

Posted by GitBox <gi...@apache.org>.
filsv commented on issue #268:
URL: https://github.com/apache/cordova-plugin-splashscreen/issues/268#issuecomment-642604815


   Same for me:
   
   `Plugin doesn't support this project's cordova-ios version. cordova-ios: 6.0.0, failed version requirement: <6.0.0
   Skipping 'cordova-plugin-splashscreen' for ios`
   
   @erisu or anyone else, any updates?


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-plugin-splashscreen] FireLizard edited a comment on issue #268: (iOS) cordova-ios@6.0.0 - unable to click anything in the app after the splashscreen is hidden

Posted by GitBox <gi...@apache.org>.
FireLizard edited a comment on issue #268:
URL: https://github.com/apache/cordova-plugin-splashscreen/issues/268#issuecomment-641940967


   Sorry but it does not solve the problem :(
   
   ```
   $ npm ls cordova cordova-ios cordova-plugin-splashscreen
   my-project@0.1.0 ~
   ├── cordova@9.0.0 
   ├── cordova-ios@6.0.0
   └── cordova-plugin-splashscreen@5.0.4
   ```


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-plugin-splashscreen] erisu edited a comment on issue #268: (iOS) cordova-ios@6.0.0 - unable to click anything in the app after the splashscreen is hidden

Posted by GitBox <gi...@apache.org>.
erisu edited a comment on issue #268:
URL: https://github.com/apache/cordova-plugin-splashscreen/issues/268#issuecomment-643052149


   @filsv SplashScreen has been integrated into the platform core for Cordova-iOS 6+. That means this plugin is no longer needed for Cordova-iOS 6 and up.
   
   **You will still need this plugin for other platforms** but you can ignore the message for iOS. A SplashScreen plugin major release will be coming soon which will drop iOS from this repo (`cordova-plugin-splashscreen`) and remove the warning you are seeing.
   
   *Again, the iOS SplashScreen code was migrated to the `cordova-ios` platform repo.*
   
   **As for the SplashScreen+Cordova-iOS 6 issues:**
   
   We have already merged a PR to the master branch, of the platform, that should have resolved the issues in Cordova-iOS 6.x.
   
   Here are the reference PR and issue ticket.
   PR: https://github.com/apache/cordova-ios/pull/896
   Issue: https://github.com/apache/cordova-ios/issues/890
   
   There should be a patch release coming soon, for iOS, but I can not give you the exact ETA. But it is expected and should not take long.
   
   If you want to test the changes, try using the `cordova-ios@nightly` or the `master` branch of `cordova-ios`. It would be great if you can test to ensure that the master resolves your issue.
   
   Please remember that using nightly or master is not for production use as it is a development version.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-plugin-splashscreen] antikalk closed issue #268: (iOS) cordova-ios@6.0.0 - unable to click anything in the app after the splashscreen is hidden

Posted by GitBox <gi...@apache.org>.
antikalk closed issue #268:
URL: https://github.com/apache/cordova-plugin-splashscreen/issues/268


   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-plugin-splashscreen] antikalk commented on issue #268: (iOS) cordova-ios@6.0.0 - unable to click anything in the app after the splashscreen is hidden

Posted by GitBox <gi...@apache.org>.
antikalk commented on issue #268:
URL: https://github.com/apache/cordova-plugin-splashscreen/issues/268#issuecomment-641944958


   @FireLizard okay, that is weird... I do not experience the "unable to click anything" issue anymore (cordova@9.0.0, cordova-ios@6.0.0, cordova-plugin-splashscreen@5.0.4).


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-plugin-splashscreen] antikalk edited a comment on issue #268: (iOS) cordova-ios@6.0.0 - unable to click anything in the app after the splashscreen is hidden

Posted by GitBox <gi...@apache.org>.
antikalk edited a comment on issue #268:
URL: https://github.com/apache/cordova-plugin-splashscreen/issues/268#issuecomment-639536926


   This might be related to PR #263 as the current version of this plugin still provides the iOS SplashScreen code, which should already be provided with cordova-ios@^6.0.0.
   
   "When removing cordova-plugin-splashscreen I am able to click everything again, but the splashscreen hides to early." -> Looks like the integrated splashscreen in cordova-ios@^6.0.0 does not support AutoHideSplashScreen set to false. At least for me the splashscreen is closed way before `navigator.splashscreen.hide();` is called. This might be a bug within cordova-ios.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-plugin-splashscreen] erisu commented on issue #268: (iOS) cordova-ios@6.0.0 - unable to click anything in the app after the splashscreen is hidden

Posted by GitBox <gi...@apache.org>.
erisu commented on issue #268:
URL: https://github.com/apache/cordova-plugin-splashscreen/issues/268#issuecomment-643052149


   @filsv SplashScreen has been integrated into the platform core for Cordova-iOS 6+. That means this plugin is no longer needed for Cordova-iOS 6 and up.
   
   **You will still need this plugin for other platforms** but you can ignore the message for iOS. A SplashScreen plugin major release will be coming soon which will drop iOS from this repo (`cordova-plugin-splashscreen`) and remove the warning you are seeing.
   
   *Again, the iOS SplashScreen code was migrated to the `cordova-ios` platform repo.*
   
   **As for the SplashScreen+Cordova-iOS 6 issues:**
   
   We have also already merged a PR to the master branch, of the platform, that should have resolved the issues in Cordova-iOS 6.x.
   
   Here are the reference PR and issue ticket.
   PR: https://github.com/apache/cordova-ios/pull/896
   Issue: https://github.com/apache/cordova-ios/issues/890
   
   There should be a patch release coming soon, for iOS, but I can not give you the exact ETA. But it is expected and should not take long.
   
   If you want to test the changes, try using the `cordova-ios@nightly` or the `master` branch of `cordova-ios`. It would be great if you can test to ensure that the master resolves your issue.
   
   Please remember that using nightly or master is not for production use as it is a development version.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-plugin-splashscreen] antikalk commented on issue #268: (iOS) cordova-ios@6.0.0 - unable to click anything in the app after the splashscreen is hidden

Posted by GitBox <gi...@apache.org>.
antikalk commented on issue #268:
URL: https://github.com/apache/cordova-plugin-splashscreen/issues/268#issuecomment-643117311


   @erisu I tested again using cordova-plugin-splashscreen@5.0.4 + cordova-ios master and everything looks good for me now :)


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-plugin-splashscreen] antikalk commented on issue #268: (iOS) cordova-ios@6.0.0 - unable to click anything in the app after the splashscreen is hidden

Posted by GitBox <gi...@apache.org>.
antikalk commented on issue #268:
URL: https://github.com/apache/cordova-plugin-splashscreen/issues/268#issuecomment-641767521


   Anyone else tried cordova-plugin-splashscreen@5.0.4? This seems to fix the click problem for me! The problem with the early hiding of the splashscreen still exists but that is now a cordova-ios problem, as this plugin does not contain any ios related code anymore :) Therefore I am closing this issue.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-plugin-splashscreen] filsv commented on issue #268: (iOS) cordova-ios@6.0.0 - unable to click anything in the app after the splashscreen is hidden

Posted by GitBox <gi...@apache.org>.
filsv commented on issue #268:
URL: https://github.com/apache/cordova-plugin-splashscreen/issues/268#issuecomment-643113966


   > @filsv SplashScreen has been integrated into the platform core for Cordova-iOS 6+. That means this plugin is no longer needed for Cordova-iOS 6 and up.
   > 
   > 
   > 
   > **You will still need this plugin for other platforms** but you can ignore the message for iOS. A SplashScreen plugin major release will be coming soon which will drop iOS from this repo (`cordova-plugin-splashscreen`) and remove the warning you are seeing.
   > 
   > 
   > 
   > *Again, the iOS SplashScreen code was migrated to the `cordova-ios` platform repo.*
   > 
   > 
   > 
   > **As for the SplashScreen+Cordova-iOS 6 issues:**
   > 
   > 
   > 
   > We have already merged a PR to the master branch, of the platform, that should have resolved the issues in Cordova-iOS 6.x.
   > 
   > 
   > 
   > Here are the reference PR and issue ticket.
   > 
   > PR: https://github.com/apache/cordova-ios/pull/896
   > 
   > Issue: https://github.com/apache/cordova-ios/issues/890
   > 
   > 
   > 
   > There should be a patch release coming soon, for iOS, but I can not give you the exact ETA. But it is expected and should not take long.
   > 
   > 
   > 
   > If you want to test the changes, try using the `cordova-ios@nightly` or the `master` branch of `cordova-ios`. It would be great if you can test to ensure that the master resolves your issue.
   > 
   > 
   > 
   > Please remember that using nightly or master is not for production use as it is a development version.
   
   Got it, thanks!!!


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org