I'm sure I'm missing something painfully obvious, but I can't figure out how to use a custom build of React Native.
Here is what I've done so far:
To clear up why I'm making changes to ReactAndroid and not creating a custom component instead is that I need to update some core functionality to the Network module and can't do that from a custom component.
Part of the problem I'm having trouble proceeding as that I typically would just do a "react-native init" to start a project, and its not completely clear to me what that is doing and how I could possible inject my custom build into that.
I appreciate any pointers in the right direction.
Thanks, Dustin
Nevermind, found that I was going about it the wrong way, and ReactNative actually does have some documentation around this here: https://facebook.github.io/react-native/docs/building-from-source.
After following those instructions, my changes all worked.