# Uncomment this line to define a global platform for your project
platform :ios, '17.0'

# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
ENV['COCOAPODS_DISABLE_STATS'] = 'true'

project 'Runner', {
  'Debug' => :debug,
  'Profile' => :release,
  'Release' => :release,
}

def flutter_root
  generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__)
  unless File.exist?(generated_xcode_build_settings_path)
    raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first"
  end

  File.foreach(generated_xcode_build_settings_path) do |line|
    matches = line.match(/FLUTTER_ROOT\=(.*)/)
    return matches[1].strip if matches
  end
  raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get"
end

require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root)

flutter_ios_podfile_setup

target 'Runner' do
  # Static linkage avoids a case-insensitive-filesystem collision between
  # `AppAttest.framework` (core Swift SDK) and `appattest.framework`
  # (this Flutter plugin — Flutter requires the plugin's podspec name to
  # match the Dart package name in pubspec.yaml). Static linkage produces
  # object files instead of .framework bundles, sidestepping the issue.
  use_frameworks! :linkage => :static

  flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))

  # Local path to the monorepo's AppAttest pod. Required during development
  # because v0.1.0 hasn't been published to CocoaPods trunk yet — the
  # `appattest` plugin's podspec declares a dependency on AppAttest at the
  # same version, which would 404 against trunk without this override.
  #
  # Podfile lives at sdk/bridges/flutter/example/ios/Podfile.
  # Monorepo root (sdk/) is four levels up: ios → example → flutter → bridges → sdk.
  pod 'AppAttest', :path => '../../../..'

  target 'RunnerTests' do
    inherit! :search_paths
  end
end

post_install do |installer|
  installer.pods_project.targets.each do |target|
    flutter_additional_ios_build_settings(target)

    # Pin to iOS 17.0 — AppAttest's @Observable requires iOS 17.
    # flutter_additional_ios_build_settings does not enforce this.
    target.build_configurations.each do |cfg|
      cfg.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '17.0'
    end
  end
end
