Podfile 567 B

12345678910111213141516171819202122232425262728293031
  1. post_install do |installer|
  2. installer.generated_projects.each do |project|
  3. project.targets.each do |target|
  4. target.build_configurations.each do |config|
  5. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
  6. end
  7. end
  8. end
  9. end
  10. platform :ios, '12.0'
  11. inhibit_all_warnings!
  12. target 'Temperature' do
  13. use_frameworks!
  14. pod 'AFNetworking'
  15. pod 'SDWebImage'
  16. pod 'SVProgressHUD'
  17. pod 'FMDB'
  18. pod 'MJRefresh'
  19. pod 'MJExtension'
  20. pod 'Masonry'
  21. pod 'FDFullscreenPopGesture' #全屏侧滑返回
  22. pod 'MMKV'
  23. pod 'TYPagerController'
  24. end