When I add the remote-notification UIBackgroundMode to tiapp.xml, opening the app immediately after a push notification arrives results in a black screen (ios). The app continues to run (confirmed by doing a test alert), but the UI is missing. I have even tried opening a new dummy window in the resume event, but nothing is displayed, just a black screen. If I got back to the home screen and then re-enter the app, the UI is displayed as normal. Removing the remote-notification plist settings returns the app to normal resume behaviour.
<ios> <plist> <dict> <key>UIBackgroundModes</key> <array> <string>remote-notification</string> </array> </dict> </plist> </ios>Has anyone run into this problem before?