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
This commit is contained in:
parent
00c9c1ad74
commit
f134de532a
|
@ -227,6 +227,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
|
||||
```
|
||||
|
||||
|
@ -256,6 +261,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
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in New Issue