When my app does not include this library it works fine with await AsyncStorage.getItem(STORAGE_KEY).done(); however when I add the library in it will cause the app to crash and log error messages associated with AsyncStorage. If I also comment out the AsyncStorage code and just include the chart then the app works fine again. Seems like AsyncStorage and this library don't work well with each other
When my app does not include this library it works fine with
await AsyncStorage.getItem(STORAGE_KEY).done();
however when I add the library in it will cause the app to crash and log error messages associated withAsyncStorage
. If I also comment out theAsyncStorage
code and just include the chart then the app works fine again. Seems likeAsyncStorage
and this library don't work well with each other