Add the RCTNetwork to the podfile

Summary:
The pod `RCTNetwork` is missing from the `Podfile` documentation. Without it the view controller does not run.

This probably also closes #8449.
Closes https://github.com/facebook/react-native/pull/10389

Differential Revision: D4021432

Pulled By: JoelMarcey

fbshipit-source-id: 689ed540c6750bf4ccaee1e7943d9175ac50d6c5
This commit is contained in:
Sandro Machado 2016-10-14 07:01:14 -07:00 committed by Facebook Github Bot
parent 9a33f3f40e
commit 56ac2a45d7
1 changed files with 2 additions and 0 deletions

View File

@ -209,6 +209,7 @@ target 'NumberTileGame' do
pod 'React', :path => '../node_modules/react-native', :subspecs => [
'Core',
'RCTText',
'RCTNetwork',
'RCTWebSocket', # needed for debugging
# Add any other subspecs you want to use in your project
]
@ -233,6 +234,7 @@ target 'swift-2048' do
pod 'React', :path => '../node_modules/react-native', :subspecs => [
'Core',
'RCTText',
'RCTNetwork',
'RCTWebSocket', # needed for debugging
# Add any other subspecs you want to use in your project
]