Skip to content

lenaten/react-native-relay

Repository files navigation

NOTE

The problem was solved, please don't use this project anymore. Thanks.

react-native-relay

Join the chat at https://gitter.im/lenaten/react-native-relay

A working version of react-native with relay.

Fix the compatibility issue as described in facebook/relay#26.

Getting Started

Run GraphQL Server

$ git clone https://github.com/relayjs/relay-starter-kit
$ cd relay-starter-kit
$ npm install
$ npm start

Run Native App

ios

$ git clone https://github.com/lenaten/react-native-relay.git
$ open react-native-relay/ios/fix.xcodeproj

android

$ git clone https://github.com/lenaten/react-native-relay.git
$ cd react-native-relay
$ react-native run-android

Graphql URL Address

The default IP address of graphql server is localhost(127.0.0.1). When you run the app on emulator like genymotion or on real device, localhost is not accessible. The graphqlURL config in config.js must be updated to accessible one.

Genymotion

Find the network interface name in: VirtualBox -> [Your Android VM] -> Settings -> Network -> Adapter Attached [0] To Host Only Adapter -> Name. Find the IP address with ifconfig command, then replace the localhost string in config.js with the IP address.

babelRelayPlugin.js

The modified version of react-native explicitly looks for babelRelayPlugin.js in <projectRoot>/scripts.

Modified Packages

Thanks

  • @skevy. You did the real work.
  • @boourns