Podfile 871 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. flutter_application_path = './yxlj_flutter'
  2. load File.join(flutter_application_path, '.ios', 'Flutter', 'podhelper.rb')
  3. post_install do |installer|
  4. installer.generated_projects.each do |project|
  5. project.targets.each do |target|
  6. target.build_configurations.each do |config|
  7. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
  8. end
  9. end
  10. end
  11. flutter_post_install(installer) if defined?(flutter_post_install)
  12. end
  13. platform :ios, '12.0'
  14. inhibit_all_warnings!
  15. target 'Temperature' do
  16. install_all_flutter_pods(flutter_application_path)
  17. use_frameworks!
  18. pod 'AFNetworking'
  19. pod 'SDWebImage', '~> 5.0'
  20. pod 'SVProgressHUD'
  21. pod 'FMDB'
  22. pod 'MJRefresh'
  23. pod 'MJExtension'
  24. pod 'Masonry'
  25. pod 'FDFullscreenPopGesture' #全屏侧滑返回
  26. pod 'MMKV'
  27. pod 'TYPagerController'
  28. pod 'YBPopupMenu'
  29. pod 'WebViewJavascriptBridge', '~> 6.0'
  30. end