Skip to content

Commit

Permalink
Add the RCTNetwork to the podfile
Browse files Browse the repository at this point in the history
Summary:
The pod `RCTNetwork` is missing from the `Podfile` documentation. Without it the view controller does not run.

This probably also closes #8449.
Closes #10389

Differential Revision: D4021432

Pulled By: JoelMarcey

fbshipit-source-id: 689ed540c6750bf4ccaee1e7943d9175ac50d6c5
  • Loading branch information
SandroMachado authored and Facebook Github Bot committed Oct 14, 2016
1 parent 9a33f3f commit 56ac2a4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/IntegrationWithExistingApps.md
Expand Up @@ -209,6 +209,7 @@ target 'NumberTileGame' do
pod 'React', :path => '../node_modules/react-native', :subspecs => [ pod 'React', :path => '../node_modules/react-native', :subspecs => [
'Core', 'Core',
'RCTText', 'RCTText',
'RCTNetwork',
'RCTWebSocket', # needed for debugging 'RCTWebSocket', # needed for debugging
# Add any other subspecs you want to use in your project # Add any other subspecs you want to use in your project
] ]
Expand All @@ -233,6 +234,7 @@ target 'swift-2048' do
pod 'React', :path => '../node_modules/react-native', :subspecs => [ pod 'React', :path => '../node_modules/react-native', :subspecs => [
'Core', 'Core',
'RCTText', 'RCTText',
'RCTNetwork',
'RCTWebSocket', # needed for debugging 'RCTWebSocket', # needed for debugging
# Add any other subspecs you want to use in your project # Add any other subspecs you want to use in your project
] ]
Expand Down

0 comments on commit 56ac2a4

Please sign in to comment.