Podfile 978 B

1234567891011121314151617181920212223242526272829303132333435
  1. # Uncomment the next line to define a global platform for your project
  2. # platform :ios, '9.0'
  3. source 'https://github.com/CocoaPods/Specs.git'
  4. platform :ios, '15.1'
  5. install! 'cocoapods', :disable_input_output_paths => true
  6. target 'AIIM' do
  7. project 'AIIM.xcodeproj'
  8. # Comment the next line if you don't want to use dynamic frameworks
  9. use_frameworks!
  10. use_modular_headers!
  11. # Pods for AIIM
  12. pod 'LookinServer', :configurations => ['Debug']
  13. pod 'SocketRocket'
  14. pod 'FMDB'
  15. pod 'AFNetworking', '~> 4.0'
  16. # pod 'ReactiveObjC', '~> 3.1.0'
  17. pod 'SDWebImage'
  18. pod 'JitsiMeetSDK','11.1.0'
  19. pod 'Bugly'
  20. pod 'AliyunOSSiOS'
  21. pod 'Masonry'
  22. pod 'MBProgressHUD'
  23. end
  24. post_install do |installer|
  25. installer.generated_projects.each do |project|
  26. project.targets.each do |target|
  27. target.build_configurations.each do |config|
  28. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '15.1'
  29. end
  30. end
  31. end
  32. end