Skip to content

Commit

Permalink
[template] Update Podfile to conform to upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
alloy committed Oct 9, 2020
1 parent 8a20e2c commit bbd37c2
Showing 1 changed file with 30 additions and 105 deletions.
135 changes: 30 additions & 105 deletions local-cli/generator-macos/templates/macos/Podfile
Original file line number Diff line number Diff line change
@@ -1,112 +1,37 @@
require_relative '../node_modules/react-native-macos/scripts/react_native_pods'
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'

def add_flipper_pods!(versions = {})
versions['Flipper'] ||= '~> 0.33.1'
versions['DoubleConversion'] ||= '1.1.7'
versions['Flipper-Folly'] ||= '~> 2.1'
versions['Flipper-Glog'] ||= '0.3.6'
versions['Flipper-PeerTalk'] ||= '~> 0.0.4'
versions['Flipper-RSocket'] ||= '~> 1.0'

pod 'FlipperKit', versions['Flipper'], :configuration => 'Debug'
pod 'FlipperKit/FlipperKitLayoutPlugin', versions['Flipper'], :configuration => 'Debug'
pod 'FlipperKit/SKIOSNetworkPlugin', versions['Flipper'], :configuration => 'Debug'
pod 'FlipperKit/FlipperKitUserDefaultsPlugin', versions['Flipper'], :configuration => 'Debug'
pod 'FlipperKit/FlipperKitReactPlugin', versions['Flipper'], :configuration => 'Debug'

# List all transitive dependencies for FlipperKit pods
# to avoid them being linked in Release builds
pod 'Flipper', versions['Flipper'], :configuration => 'Debug'
pod 'Flipper-DoubleConversion', versions['DoubleConversion'], :configuration => 'Debug'
pod 'Flipper-Folly', versions['Flipper-Folly'], :configuration => 'Debug'
pod 'Flipper-Glog', versions['Flipper-Glog'], :configuration => 'Debug'
pod 'Flipper-PeerTalk', versions['Flipper-PeerTalk'], :configuration => 'Debug'
pod 'Flipper-RSocket', versions['Flipper-RSocket'], :configuration => 'Debug'
pod 'FlipperKit/Core', versions['Flipper'], :configuration => 'Debug'
pod 'FlipperKit/CppBridge', versions['Flipper'], :configuration => 'Debug'
pod 'FlipperKit/FBCxxFollyDynamicConvert', versions['Flipper'], :configuration => 'Debug'
pod 'FlipperKit/FBDefines', versions['Flipper'], :configuration => 'Debug'
pod 'FlipperKit/FKPortForwarding', versions['Flipper'], :configuration => 'Debug'
pod 'FlipperKit/FlipperKitHighlightOverlay', versions['Flipper'], :configuration => 'Debug'
pod 'FlipperKit/FlipperKitLayoutTextSearchable', versions['Flipper'], :configuration => 'Debug'
pod 'FlipperKit/FlipperKitNetworkPlugin', versions['Flipper'], :configuration => 'Debug'
target 'HelloWorld-macOS' do
platform :macos, '10.13'
use_native_modules!
use_react_native!(:path => '../node_modules/react-native-macos')

# Enables Hermes
#
# Be sure to first install the `hermes-engine-darwin` npm package, e.g.:
#
# $ yarn add 'hermes-engine-darwin@~0.5.0'
#
# pod 'React-Core/Hermes', :path => '../node_modules/react-native-macos/'
# pod 'hermes', :path => '../node_modules/hermes-engine-darwin'
# pod 'libevent', :podspec => '../node_modules/react-native-macos/third-party-podspecs/libevent.podspec'

# Pods specifically for macOS target
end

# Post Install processing for Flipper
def flipper_post_install(installer)
installer.pods_project.targets.each do |target|
if target.name == 'YogaKit'
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '4.1'
end
end
target 'HelloWorld-iOS' do
platform :ios, '10'
use_native_modules!
use_react_native!(:path => '../node_modules/react-native-macos')

# Enables Flipper.
#
# Note that if you have use_frameworks! enabled, Flipper will not work and
# you should disable these next few lines.
use_flipper!
post_install do |installer|
flipper_post_install(installer)
end
end

abstract_target 'Shared' do
# Pods for HelloWorld
pod 'FBLazyVector', :path => '../node_modules/react-native-macos/Libraries/FBLazyVector'
pod 'FBReactNativeSpec', :path => '../node_modules/react-native-macos/Libraries/FBReactNativeSpec'
pod 'RCTRequired', :path => '../node_modules/react-native-macos/Libraries/RCTRequired'
pod 'RCTTypeSafety', :path => '../node_modules/react-native-macos/Libraries/TypeSafety'
pod 'React', :path => '../node_modules/react-native-macos/'
pod 'React-Core', :path => '../node_modules/react-native-macos/'
pod 'React-CoreModules', :path => '../node_modules/react-native-macos/React/CoreModules'
pod 'React-Core/DevSupport', :path => '../node_modules/react-native-macos/'
pod 'React-RCTActionSheet', :path => '../node_modules/react-native-macos/Libraries/ActionSheetIOS'
pod 'React-RCTAnimation', :path => '../node_modules/react-native-macos/Libraries/NativeAnimation'
pod 'React-RCTBlob', :path => '../node_modules/react-native-macos/Libraries/Blob'
pod 'React-RCTImage', :path => '../node_modules/react-native-macos/Libraries/Image'
pod 'React-RCTLinking', :path => '../node_modules/react-native-macos/Libraries/LinkingIOS'
pod 'React-RCTNetwork', :path => '../node_modules/react-native-macos/Libraries/Network'
pod 'React-RCTSettings', :path => '../node_modules/react-native-macos/Libraries/Settings'
pod 'React-RCTText', :path => '../node_modules/react-native-macos/Libraries/Text'
pod 'React-RCTVibration', :path => '../node_modules/react-native-macos/Libraries/Vibration'
pod 'React-Core/RCTWebSocket', :path => '../node_modules/react-native-macos/'

pod 'React-cxxreact', :path => '../node_modules/react-native-macos/ReactCommon/cxxreact'
pod 'React-jsi', :path => '../node_modules/react-native-macos/ReactCommon/jsi'
pod 'React-jsiexecutor', :path => '../node_modules/react-native-macos/ReactCommon/jsiexecutor'
pod 'React-jsinspector', :path => '../node_modules/react-native-macos/ReactCommon/jsinspector'
pod 'React-callinvoker', :path => '../node_modules/react-native-macos/ReactCommon/callinvoker'
pod 'ReactCommon/turbomodule/core', :path => '../node_modules/react-native-macos/ReactCommon'
pod 'Yoga', :path => '../node_modules/react-native-macos/ReactCommon/yoga', :modular_headers => true

pod 'DoubleConversion', :podspec => '../node_modules/react-native-macos/third-party-podspecs/DoubleConversion.podspec'
pod 'glog', :podspec => '../node_modules/react-native-macos/third-party-podspecs/glog.podspec'
pod 'RCT-Folly', :podspec => '../node_modules/react-native-macos/third-party-podspecs/RCT-Folly.podspec'
pod 'boost-for-react-native', :podspec => '../node_modules/react-native-macos/third-party-podspecs/boost-for-react-native.podspec'

target 'HelloWorld-macOS' do
platform :macos, '10.13'
use_native_modules!

# Enables Hermes
#
# Be sure to first install the `hermes-engine-darwin` npm package, e.g.:
#
# $ yarn add 'hermes-engine-darwin@^0.4.3'
#
# pod 'React-Core/Hermes', :path => '../node_modules/react-native-macos/'
# pod 'hermes', :path => '../node_modules/hermes-engine-darwin'
# pod 'libevent', :podspec => '../node_modules/react-native-macos/third-party-podspecs/libevent.podspec'

# Pods specifically for macOS target
end

target 'HelloWorld-iOS' do
platform :ios, '10'
use_native_modules!

# Enables Flipper.
#
# Note that if you have use_frameworks! enabled, Flipper will not work and
# you should disable these next few lines.
add_flipper_pods!
post_install do |installer|
flipper_post_install(installer)
end

# Pods specifically for iOS target
end
# Pods specifically for iOS target
end

0 comments on commit bbd37c2

Please sign in to comment.