reactotron icon indicating copy to clipboard operation
reactotron copied to clipboard

Toggle devtools doesn't work in reactotron

Open MahmonirB opened this issue 3 years ago • 1 comments

I use below configs, but when I click on View -> Toggle Developer tools in reactotron, devtools can not connect to emulator and don't show Network tab for instance.

Mac OS Catalina 10.15.6, Reactotron Version 3.0.0-beta.9 React Native 0.61.5

import Reactotron from 'reactotron-react-native';
import AsyncStorage from '@react-native-community/async-storage';
import { reactotronRedux } from 'reactotron-redux';

Reactotron.setAsyncStorageHandler(AsyncStorage)
  .configure({
    name: 'React Native Demo',
  })
  .useReactNative({
    asyncStorage: true,
    editor: true,
    // there are more options to editor
    errors: { veto: () => false },
    // there are more options to the async storage.
    // networking: {}, // or turn it off with false
    overlay: false, // just turning off overlay
  })
  .use(reactotronRedux())
  .connect();

MahmonirB avatar May 16 '21 08:05 MahmonirB

image_2021_05_16T07_28_41_604Z

But dev-tools can not connect:

Screen Shot 1400-02-26 at 13 08 34

MahmonirB avatar May 16 '21 08:05 MahmonirB