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

target 'watchFacePack' do
  
  # Comment the next line if you don't want to use dynamic frameworks
  use_frameworks!
  
  # Pods for watchFacePack
  #  pod 'AWSS3'
  #  pod 'AWSCore'
  pod 'SDWebImage'
  pod 'MBProgressHUD'
  pod 'lottie-ios'
  pod 'Google-Mobile-Ads-SDK'
  pod 'Localize'
  pod 'Localize-Swift'
  pod 'SwiftyGif'
  pod 'AWSS3'
  pod 'VersaPlayer'
  pod 'CHIPageControl/Jaloro'
  pod 'MagicalRecord', :git => 'https://github.com/magicalpanda/MagicalRecord'
  pod 'SwiftGifOrigin'
  # /Users/aashir/watchfaces/watchFacePack.xcodeproj Missing package product 'FirebaseRemoteConfig'
  
  
  
  post_install do |installer|
    installer.pods_project.targets.each do |target|
      target.build_configurations.each do |config|
        config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '14.0'
        xcconfig_path = config.base_configuration_reference.real_path
        xcconfig = File.read(xcconfig_path)
        xcconfig_mod = xcconfig.gsub(/DT_TOOLCHAIN_DIR/, "TOOLCHAIN_DIR")
        File.open(xcconfig_path, "w") { |file| file << xcconfig_mod }
      end
    end
  end
end

#post_install do |installer|
#  installer.aggregate_targets.each do |target|
#    target.xcconfigs.each do |variant, xcconfig|
#      xcconfig_path = target.client_root + target.xcconfig_relative_path(variant)
#      IO.write(xcconfig_path, IO.read(xcconfig_path).gsub("TOOLCHAIN_DIR", "TOOLCHAIN_DIR"))
#    end
#  end
#  installer.pods_project.targets.each do |target|
#    target.build_configurations.each do |config|
#      if config.base_configuration_reference.is_a? Xcodeproj::Project::Object::PBXFileReference
#        xcconfig_path = config.base_configuration_reference.real_path
#        IO.write(xcconfig_path, IO.read(xcconfig_path).gsub("TOOLCHAIN_DIR", "TOOLCHAIN_DIR"))
#      end
#    end
#  end
#end
