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
hey before I was using asyncStorage then my IOS is working well but android i get size error
then I want to use this redux-persist-filesystem-storage still my IOS is working fine but android
I am getting this error
my code
import immutablePersistenceTransform from '../Services/ImmutablePersistenceTransform';
//import { AsyncStorage } from 'react-native';
import FilesystemStorage from 'redux-persist-filesystem-storage'
const REDUX_PERSIST = {
active: true,
reducerVersion: '1.0',
storeConfig: {
key: 'primary',
storage: FilesystemStorage,
blacklist: ['appState', 'search'], // reducer keys that you do NOT want stored to persistence here
// whitelist: [], Optionally, just specify the keys you DO want stored to
// persistence. An empty array means 'don't store any reducers' -> infinitered/ignite#409
transforms: [immutablePersistenceTransform],
},
};
export default REDUX_PERSIST;
`
The text was updated successfully, but these errors were encountered:
hey before I was using asyncStorage then my IOS is working well but android i get size error
then I want to use this redux-persist-filesystem-storage still my IOS is working fine but android
I am getting this error
my code
`
The text was updated successfully, but these errors were encountered: