Hi, after updating my Ionic app from 3 to 4 I can no longer access stored data which means my users are logged out of the app when they upgrade.
The app upgrade works fine in the browser (via Ionic serve) i.e. the user is not logged out.
When I deploy the app to iOS data is not accessible. I can see that the Ionic 3 app uses INDEXEDDB for storage on iOS and the Ionic 4 app uses webSQLStorage.
I tried forcing iOS to use IndexedDB (driverOrder: ['indexeddb']) but I then get the error Error: No available storage method found..
Any ideas to fix this? Thanks
Hi, after updating my Ionic app from 3 to 4 I can no longer access stored data which means my users are logged out of the app when they upgrade.
The app upgrade works fine in the browser (via Ionic serve) i.e. the user is not logged out.
When I deploy the app to iOS data is not accessible. I can see that the Ionic 3 app uses INDEXEDDB for storage on iOS and the Ionic 4 app uses webSQLStorage.
I tried forcing iOS to use IndexedDB (
driverOrder: ['indexeddb']) but I then get the errorError: No available storage method found..Any ideas to fix this? Thanks