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
We're migrating an ios/android ionic app from an older version and noticed localStorage is now the 2nd preferred driver of storage, the 1st being IDB.
Looking thru ionic-storage code and localforage code, as far as I understand, IDB was unsafe for older iOS versions (12.x, especially given WebKit bugs). So the code switches between IDB and localStorage.
We do not target older iOS versions, do not target IE, do not target android < 9.
can I safely use localStorage or should I really use IDB ?
if the user backups and reinstalls its app, are IDB or localStorage persisted between reinstalls or should I use SQLite ?
thx
The text was updated successfully, but these errors were encountered:
Hello
We're migrating an ios/android ionic app from an older version and noticed localStorage is now the 2nd preferred driver of storage, the 1st being IDB.
Looking thru ionic-storage code and localforage code, as far as I understand, IDB was unsafe for older iOS versions (12.x, especially given WebKit bugs). So the code switches between IDB and localStorage.
We do not target older iOS versions, do not target IE, do not target android < 9.
thx
The text was updated successfully, but these errors were encountered: