This repository has been archived by the owner on Dec 6, 2023. It is now read-only.
v5.0.0
infinitered-circleci
released this
26 Mar 01:21
·
717 commits
to master
since this release
5.0.0 (2020-03-26)
Features
- Add ability for Reactotron to communicate with Flipper
BREAKING CHANGES
The way communication is handled has changed with this release to add the ability to communicate with both Reactotron standalone and Reactotron in Flipper. The only API change is if you intend to use Reactotron in Flipper. If you do here are the steps that you need to take:
- Install at least this version of
reactotron-react-native
- Install
react-native-flipper
- Have Flipper configured in your app (
react-native
template does this starting in 0.62.0) pod install
within theios
folder of your project- Add the following to your standard reactotron config:
import ReactotronFlipper from 'reactotron-react-native/dist/flipper';
{...}
Reactotron.configure({
createSocket: path => new ReactotronFlipper(path), // You can have the other options but this one at a minimum is required.
});