Description
use redux / immutable for state.
redux-persist / redux-persist-transform-immutable for state persistence.
Every is good with react-native 0.43.4.
Immutable list rehydrating as a map, after upgrading to react-native 0.44.0

Reproduction Steps and Sample Code
import { persistStore, autoRehydrate } from 'redux-persist';
import immutableTransform from 'redux-persist-transform-immutable';
const configureStore = () => {
const store = createStore(
reducer,
composeEnhancers( applyMiddleware(...middlewares), autoRehydrate() )
);
return store;
}
const store = configureStore();
persistStore(store, {
storage: AsyncStorage,
transforms: [immutableTransform()]
});
Solution
No workaround.
May this issue is related to packager updates in 0.44.0
related issues: rt2zz/redux-persist-transform-immutable#21
glenjamin/transit-immutable-js#32
Additional Information
- React Native version: [0.44.0]
- Platform: [Android]
- Development Operating System: [Linux]
- Dev tools: [android-23]
Description
use redux / immutable for state.
redux-persist / redux-persist-transform-immutable for state persistence.
Every is good with react-native 0.43.4.
Immutable list rehydrating as a map, after upgrading to react-native 0.44.0
Reproduction Steps and Sample Code
Solution
No workaround.
May this issue is related to packager updates in 0.44.0
related issues: rt2zz/redux-persist-transform-immutable#21
glenjamin/transit-immutable-js#32
Additional Information