# Silence CocoaPods' "no platform specified" warning; matches the post_install target below.
platform :ios, '13.0'

# Bump every pod's deployment target. Xcode 15+ removed `libarclite`, so pods that
# declare an old IPHONEOS_DEPLOYMENT_TARGET (e.g. SAMKeychain via @nativescript/
# secure-storage) fail device builds with "SDK does not contain 'libarclite'".
post_install do |installer|
  installer.pods_project.targets.each do |target|
    target.build_configurations.each do |config|
      config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
    end
  end
end
