I\'m using AsyncStorage.clear()
which is working just fine on Android but when run using iOS platform (real device) I\'m getting this error and can\'t find anything
I think it's crappy that clear throws an exception when the storage has never been used; at least that is what I'm thinking is the case?
So to move on I modified code removing the use of .clear() and replacing it with
AsyncStorage.getAllKeys().then(AsyncStorage.multiRemove)
I'd still like an reason if anyone knows what is going on.