require_relative '../../scripts/react_native_pods'

source 'https://cdn.cocoapods.org/'
platform :ios, '11.0'

USE_FRAMEWORKS = ENV['USE_FRAMEWORKS'] == '1'

if USE_FRAMEWORKS
  puts "Installing pods with use_frameworks!"
  use_frameworks!
end

if ENV['USE_HERMES'] == '1'
  puts "Using Hermes engine"
end

def pods()
  project 'RNTesterPods.xcodeproj'

  puts "Building RNTester with Fabric enabled."
  fabric_enabled = true

  prefix_path = "../.."
  use_react_native!(path: prefix_path, fabric_enabled: fabric_enabled, hermes_enabled: ENV['USE_HERMES'] == '1')
  pod 'ReactCommon/turbomodule/samples', :path => "#{prefix_path}/ReactCommon"

  # Additional Pods which aren't included in the default Podfile
  pod 'React-RCTPushNotification', :path => "#{prefix_path}/Libraries/PushNotificationIOS"
  pod 'Yoga', :path => "#{prefix_path}/ReactCommon/yoga", :modular_headers => true
  # Additional Pods which are classed as unstable

  # RNTester native modules and components
  pod 'ScreenshotManager', :path => "NativeModuleExample"
end

target 'RNTester' do
  pods()
  if !USE_FRAMEWORKS
    use_flipper!
  end
end

target 'RNTesterUnitTests' do
  pods()
  pod 'React-RCTTest', :path => "./RCTTest"
end

target 'RNTesterIntegrationTests' do
  pods()
  pod 'React-RCTTest', :path => "./RCTTest"
end

post_install do |installer|
  react_native_post_install(installer)
  __apply_Xcode_12_5_M1_post_install_workaround(installer)
end
