diff --git a/scripts/react_native_pods.rb b/scripts/react_native_pods.rb index 219843264680..5c1eb2c75034 100644 --- a/scripts/react_native_pods.rb +++ b/scripts/react_native_pods.rb @@ -88,14 +88,3 @@ def use_flipper!(versions = {}) pod 'FlipperKit/FlipperKitLayoutTextSearchable', versions['Flipper'], :configuration => 'Debug' pod 'FlipperKit/FlipperKitNetworkPlugin', versions['Flipper'], :configuration => 'Debug' 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 - end -end diff --git a/template/ios/Podfile b/template/ios/Podfile index 6e1ebd618116..8e81ab05d758 100644 --- a/template/ios/Podfile +++ b/template/ios/Podfile @@ -18,9 +18,6 @@ target 'HelloWorld' do # 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 target 'HelloWorld-tvOS' do