Podfile 604 B

12345678910111213141516171819202122232425
  1. # Uncomment the next line to define a global platform for your project
  2. platform :ios, '12.4'
  3. target '74' do
  4. # Comment the next line if you don't want to use dynamic frameworks
  5. use_frameworks!
  6. # Pods for 74
  7. pod 'Alamofire', '~> 5.0'
  8. target '74Tests' do
  9. inherit! :search_paths
  10. # Pods for testing
  11. end
  12. target '74UITests' do
  13. # Pods for testing
  14. end
  15. post_install do |installer|
  16. installer.pods_project.targets.each do |target|
  17. target.build_configurations.each do |config|
  18. config.build_settings["IPHONEOS_DEPLOYMENT_TARGET"] = "12.4"
  19. end
  20. end
  21. end
  22. end