Open raybelisle opened 2 years ago
Getting the same error here.
Mine was getting this error when we migrated form AsyncStorage to MMKV. The solution for us was to just remove the setAsyncStorageHandler method:
Going from this:
Reactotron.setAsyncStorageHandler(asyncStorage)
.configure()
.useReactNative()
.use(reactotronRedux());
To this
Reactotron
.configure()
.useReactNative()
.use(reactotronRedux());
I just installed reactotron and when I start up my app with the desktop client or the flipper client, I get this message immediately and no connection is established.
Environment is the latest version of the tools. In package.json: "reactotron-react-native": "^5.0.3", "reactotron-redux": "^3.1.3",
And my reactotron config when trying with flipper is:
`import Reactotron from 'reactotron-react-native'; import ReactotronFlipper from 'reactotron-react-native/dist/flipper'; import AsyncStorage from 'react-native';
Reactotron.setAsyncStorageHandler(AsyncStorage) // AsyncStorage would either come from
react-native
or@react-native-community/async-storage
depending on where you get it from .configure({ // name: 'Jobble QA Dev', createSocket: (path) => new ReactotronFlipper(path), // ... }) // controls connection & communication settings .useReactNative() // add all built-in react native plugins .connect(); // let's connect! `If I try to connect to the desktop client I have used this instead:
`import Reactotron from 'reactotron-react-native'; import ReactotronFlipper from 'reactotron-react-native/dist/flipper'; import AsyncStorage from 'react-native';
Reactotron.setAsyncStorageHandler(AsyncStorage) // AsyncStorage would either come from
react-native
or@react-native-community/async-storage
depending on where you get it from .configure() // controls connection & communication settings .useReactNative() // add all built-in react native plugins .connect(); // let's connect! ` and the following in App.js does output the message Reactotron Configuredif (__DEV__) { import('./ReactotronConfig').then(() => console.log('Reactotron Configured')); }
Any ideas on what to try here?