I’m running ionic 2.0.0 beta 10 and my code currently works fine with ionic serve, so I began the process of testing it out with an emulated device using ionic run android. However, I’ve ran into some issues:
All SQL tables I create are created via:
this.platform.ready().then(() => {
this.applicationsSQL = new Storage(SqlStorage);
});
And similar. This works fine with ionic serve, but I’m not so sure with run because when my app starts I instead get:
OPEN database: __ionicstorage
Followed by many of these:
new transaction is waiting for open operation
database already open: __ionicstorage
And then in after that I get:
DB opened: __ionicstorage
And the resources tab show none of the tables that should be made. Any ideas?