Podfile 561 B

123456789101112131415161718
  1. target 'LoopFollow' do
  2. use_frameworks!
  3. pod 'ShareClient', :git => 'https://github.com/loopandlearn/dexcom-share-client-swift.git', :branch => 'loopfollow'
  4. end
  5. post_install do |installer|
  6. # Set minimum deployment target for all pods to match the app (suppresses deprecation warnings)
  7. installer.pods_project.targets.each do |target|
  8. target.build_configurations.each do |config|
  9. if config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'].to_f < 16.6
  10. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '16.6'
  11. end
  12. end
  13. end
  14. end