|
|
|
|
|
by roywashere
2273 days ago
|
|
To be honest, HTML5 LocalStorage was always different on iOS when compared to other platforms. The iOS browser localstorage is stored in /caches so it is cleaned when the device goes low on disk space. I found out the hard way, had a cordova app which ran on Android and iOS (and web) and saved an account token in LocalStorage. Some iOS users kept on getting logged out, mostly users with smaller size iPhones! Now we store the account token in iOS keyring and that works. ref: https://stackoverflow.com/questions/32927070/complete-data-l... |
|