From f134de532aa3b61c1ff8703a9225480fe6c9f37f Mon Sep 17 00:00:00 2001 From: Vincent Bernier Date: Thu, 19 Oct 2017 09:41:24 -0700 Subject: [PATCH] Add missing link to missing podspec Summary: Update Integration with Existing Apps Pod File missing link to podspecs that are not in the master CocoaPods spec repo Be able to trust documentation when I come back to the page later. [DOCS][ENHANCEMENT][docs/IntegrationWithExistingApps.md] Add private podspec path to iOS 'Integration with Existing Apps' example. Closes https://github.com/facebook/react-native/pull/16461 Differential Revision: D6099907 Pulled By: hramos fbshipit-source-id: f5ca94465355172e9d1df39469b66aa3b6a8624c --- docs/IntegrationWithExistingApps.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/IntegrationWithExistingApps.md b/docs/IntegrationWithExistingApps.md index 831600565..b3aa09efb 100644 --- a/docs/IntegrationWithExistingApps.md +++ b/docs/IntegrationWithExistingApps.md @@ -226,6 +226,11 @@ target 'NumberTileGame' do ] # Explicitly include Yoga if you are using RN >= 0.42.0 pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga' + + # Third party deps podspec link + pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec' + pod 'GLog', :podspec => '../node_modules/react-native/third-party-podspecs/GLog.podspec' + pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec' end ``` @@ -255,6 +260,11 @@ target 'swift-2048' do ] # Explicitly include Yoga if you are using RN >= 0.42.0 pod "yoga", :path => "../node_modules/react-native/ReactCommon/yoga" + + # Third party deps podspec link + pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec' + pod 'GLog', :podspec => '../node_modules/react-native/third-party-podspecs/GLog.podspec' + pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec' end ```