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 Configured
if (__DEV__) { import('./ReactotronConfig').then(() => console.log('Reactotron Configured')); }
Any ideas on what to try here?
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-nativeor@react-native-community/async-storagedepending 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-nativeor@react-native-community/async-storagedepending 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 Configured
if (__DEV__) { import('./ReactotronConfig').then(() => console.log('Reactotron Configured')); }Any ideas on what to try here?