# Resolve react_native_pods.rb with node to allow for hoisting
require Pod::Executable.execute_command('node', ['-p',
  'require.resolve(
    "react-native/scripts/react_native_pods.rb",
    {paths: [process.argv[1]]},
  )', __dir__]).strip

# Log the minimum iOS version
ios_version = min_ios_version_supported
Pod::UI.puts "📱 Minimum iOS version supported: #{ios_version}".green

platform :ios, ios_version
prepare_react_native_project!

# linkage = ENV['USE_FRAMEWORKS']
# if linkage != nil
#   Pod::UI.puts "Configuring Pod with #{linkage}ally linked Frameworks".green
#   use_frameworks! :linkage => linkage.to_sym
# end
use_frameworks! :linkage => :static
$RNFirebaseAsStaticFramework = true

ENV['RCT_NEW_ARCH_ENABLED'] = '1'

target 'PocketPal' do
  config = use_native_modules!

  use_react_native!(
    :path => config[:reactNativePath],
    # An absolute path to your application root.
    :app_path => "#{Pod::Config.instance.installation_root}/.."
  )

  # # Required for Firebase with New Architecture
  # pod 'Firebase',         :modular_headers => true
  # pod 'FirebaseCore',     :modular_headers => true
  # pod 'FirebaseAppCheck', :modular_headers => true
  # pod 'GoogleUtilities',  :modular_headers => true

  # # Native module for @react-native-firebase/app-check
  # pod 'RNFBAppCheck', :path => '../node_modules/@react-native-firebase/app-check'

  target 'PocketPalTests' do
    inherit! :complete
    # Pods for testing
  end

  # Uncomment this line if you're not using auto-linking or if auto-linking causes trouble
  # pod 'WatermelonDB', path: '../node_modules/@nozbe/watermelondb'
  
  # WatermelonDB dependency, should not be needed on modern React Native
  # (please file an issue if this causes issues for you)
  # pod 'React-jsi', path: '../node_modules/react-native/ReactCommon/jsi', modular_headers: true
  
  # WatermelonDB dependency
  pod 'simdjson', path: '../node_modules/@nozbe/simdjson', modular_headers: true

  # Mustache template rendering for iOS Shortcuts
  pod 'GRMustache.swift'

  # Force llama-rn to build as static library to avoid duplicate headers
  pre_install do |installer|
    installer.pod_targets.each do |pod|
      # Fix "Multiple commands produce" for llama-rn
      if pod.name == 'llama-rn' || pod.name.start_with?('llama')
        puts "Forcing #{pod.name} to static_library build type"
        def pod.build_type
          Pod::BuildType.static_library
        end
      end
    end
  end

  post_install do |installer|
    # https://github.com/facebook/react-native/blob/main/packages/react-native/scripts/react_native_pods.rb#L197-L202
    react_native_post_install(
      installer,
      config[:reactNativePath],
      :mac_catalyst_enabled => false,
      # :ccache_enabled => true
    )

    # Workaround: pin the fmt pod to C++17 so it skips the consteval code path
    # that Apple clang 21 (Xcode 26.4.1) rejects. Tracking facebook/react-native#55601.
    # Remove once RN vendors a fmt release that is clang-21-compatible.
    installer.pods_project.targets.each do |target|
      if target.name == 'fmt'
        target.build_configurations.each do |config|
          config.build_settings['CLANG_CXX_LANGUAGE_STANDARD'] = 'c++17'
        end
      end
    end
  end


end
