You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The requirement to wait for the deviceready event has caused some major confusion and other trouble for people using Ionic 2 and other Angular derivatives with the sqlite plugin. Here are a couple examples:
Hi @brodybits, by default the attribution of rootPage on ionic 2 is on declaration of var rootPage. I can solve my problem moving the rootPage attribution to the platformReady on app.component
In contrast I heard that in the React Native there is no requirement to wait for the deviceready event.
I think the solution is to fix cordova.js to prepare the all of the JavaScript from the plugins upon loading and to have cordova.exec put the native calls into a queue until the initialization is confirmed to be completed.
I will take a look at fixing this when I get a chance.
The text was updated successfully, but these errors were encountered:
brodycj
changed the title
Drop requirement to wait for deviceready event
Improve startup in JavaScript
Jun 27, 2018
The requirement to wait for the
deviceready
event has caused some major confusion and other trouble for people using Ionic 2 and other Angular derivatives with the sqlite plugin. Here are a couple examples:I think storesafe/cordova-sqlite-storage#594 (comment) by @rodineijf really helps to highlight this problem:
In contrast I heard that in the React Native there is no requirement to wait for the
deviceready
event.I think the solution is to fix cordova.js to prepare the all of the JavaScript from the plugins upon loading and to have cordova.exec put the native calls into a queue until the initialization is confirmed to be completed.
I will take a look at fixing this when I get a chance.
The text was updated successfully, but these errors were encountered: