ecency-mobile/reactotron-config.ts
Nouman Tahir 0ab6562248 Merge branch 'nt/engine-tokens' into nt/buy-account
# Conflicts:
#	src/containers/inAppPurchaseContainer.tsx
#	src/screens/register/registerScreen.js
2022-12-20 18:46:53 +05:00

18 lines
858 B
TypeScript

import AsyncStorage from '@react-native-async-storage/async-storage';
import Reactotron from 'reactotron-react-native';
import { reactotronRedux } from 'reactotron-redux';
import ReactotronFlipper from 'reactotron-react-native/dist/flipper';
const reactotron = 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: 'Ecency',
// For flipper reactotron client connecting with app issue check this
// https://github.com/infinitered/flipper-plugin-reactotron/issues/63#issuecomment-1318354958
createSocket: (path) => new ReactotronFlipper(path),
})
.useReactNative() // add all built-in react native plugins
.use(reactotronRedux())
.connect(); // let's connect!
export default reactotron;