Podfile 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  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 'DoraemonKit/Core', :configurations => ['Debug']
  14. pod 'SocketRocket'
  15. pod 'FMDB'
  16. pod 'AFNetworking', '~> 4.0'
  17. # pod 'ReactiveObjC', '~> 3.1.0'
  18. pod 'SDWebImage'
  19. pod 'JitsiMeetSDK','11.1.0'
  20. pod 'Bugly'
  21. pod 'AliyunOSSiOS'
  22. pod 'Masonry'
  23. pod 'MBProgressHUD'
  24. end
  25. post_install do |installer|
  26. installer.generated_projects.each do |project|
  27. project.targets.each do |target|
  28. target.build_configurations.each do |config|
  29. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '15.1'
  30. config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
  31. end
  32. end
  33. end
  34. end