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

#source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
#source 'https://github.com/CocoaPods/Specs.git'  # 备用源

target 'SpeakEasyLearnEnglish' do
  # Comment the next line if you don't want to use dynamic frameworks
  use_frameworks!
  
  pod 'Moya', '~> 15.0.0'
  pod 'lottie-ios', '~> 4.5.2'
  pod 'SnapKit', '~> 5.7.1'
  pod 'GoogleSignIn'
  pod 'MJRefresh', '~> 3.7.9'

  pod 'Adjust', '~> 5.4.4'
  pod 'DeviceKit', '~> 5.2'
  pod 'KeychainSwift', '~> 24.0'
  pod 'Firebase/Core' , '~> 12.2.0'
  
  post_install do |installer|
       installer.pods_project.targets.each do |target|
         target.build_configurations.each do |config|
           config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '15.0' # Exclude arm64 for simulator
         end
       end
    end
  
end
