# Uncomment the next line to define a global platform for your project
source 'https://github.com/CocoaPods/Specs.git'

platform :ios, '14.0'
use_frameworks!

target 'Pennies' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks

#pod 'SwiftyStoreKit'
pod 'SCLAlertView-Objective-C'
pod 'FBSDKCoreKit'

target 'PenniesTests' do
inherit! :complete
# Pods for testing
end

end


post_install do |installer|
  installer.pods_project.targets.each do |target|
    target.build_configurations.each do |config|
      config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
      config.build_settings["ONLY_ACTIVE_ARCH"] = "YES"
      config.build_settings['HEADER_SEARCH_PATHS'] = '$(inheritied)'
    end
  end
end
