# Uncomment the next line to define a global platform for your project
platform :ios, '12.0'

def import_pods
    pod 'Audiobus'
    pod 'Firebase/Crashlytics'
    pod 'Firebase/Analytics'
end

target 'AudioStretch' do
    import_pods
end

target 'AudioStretchLite' do
    import_pods
end

post_install do |installer|
  installer.pods_project.targets.each do |target|

    target.build_configurations.each do |config|
      config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
      config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
    end

  end
end
