2018-01-12 20:08:31 +00:00
|
|
|
/* eslint-disable */
|
2018-07-10 13:40:32 +00:00
|
|
|
import { NativeModules } from 'react-native';
|
2018-03-23 16:55:40 +00:00
|
|
|
import Reactotron from 'reactotron-react-native';
|
2018-01-12 20:08:31 +00:00
|
|
|
import { reactotronRedux } from 'reactotron-redux';
|
2021-09-13 20:41:05 +00:00
|
|
|
import sagaPlugin from 'reactotron-redux-saga';
|
2018-01-12 20:08:31 +00:00
|
|
|
|
2018-03-23 16:55:40 +00:00
|
|
|
if (__DEV__) {
|
2021-09-13 20:41:05 +00:00
|
|
|
const scriptURL = NativeModules.SourceCode.scriptURL;
|
|
|
|
const scriptHostname = scriptURL.split('://')[1].split(':')[0];
|
|
|
|
Reactotron.configure({ host: scriptHostname }).useReactNative().use(reactotronRedux()).use(sagaPlugin()).connect();
|
|
|
|
// Running on android device
|
|
|
|
// $ adb reverse tcp:9090 tcp:9090
|
|
|
|
Reactotron.clear();
|
|
|
|
console.warn = Reactotron.log;
|
|
|
|
console.log = Reactotron.log;
|
|
|
|
console.disableYellowBox = true;
|
2018-03-23 16:55:40 +00:00
|
|
|
}
|