Podfile 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. #source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
  2. # Uncomment the next line to define a global platform for your project
  3. platform :ios, '13.0'
  4. target 'Koala' do
  5. # Comment the next line if you don't want to use dynamic frameworks
  6. use_frameworks!
  7. # Pods for Koala
  8. pod 'Alamofire'
  9. pod 'Kingfisher'
  10. pod 'SnapKit'
  11. pod 'SVProgressHUD'
  12. pod 'IQKeyboardManagerSwift','6.5.11'
  13. pod 'SwiftyJSON'
  14. pod 'ReactiveCocoa'
  15. pod 'MJRefresh'
  16. pod 'HandyJSON'
  17. pod 'MJExtension'
  18. pod 'SideMenu'
  19. pod 'GzipSwift'
  20. pod 'FMDB'
  21. pod 'lottie-ios','3.2.3'
  22. pod 'CryptoSwift'
  23. pod 'LLCycleScrollView'
  24. pod 'SwiftSVG'
  25. pod 'Starscream'
  26. pod 'LiveChat'
  27. pod 'PGDatePicker'
  28. pod 'TYCyclePagerView'
  29. pod "ViewAnimator"
  30. pod "TagListView"
  31. pod 'MTPush','4.3.2'
  32. pod "LookinServer"
  33. pod "Cache",'5.3.0'
  34. pod 'NVActivityIndicatorView'
  35. pod 'HandyJSON'
  36. pod 'Intercom','16.5.0'
  37. pod 'BSText'
  38. pod 'KDCircularProgress'
  39. pod 'ZLPhotoBrowser' ,'4.5.3'
  40. pod 'TABAnimated', '2.6.3'
  41. target 'KoalaTests' do
  42. inherit! :search_paths
  43. # Pods for testing
  44. end
  45. target 'KoalaUITests' do
  46. inherit! :search_paths
  47. # Pods for testing
  48. end
  49. end
  50. post_install do |installer|
  51. installer.pods_project.targets.each do |target|
  52. target.build_configurations.each do |config|
  53. # Needed for building for simulator on M1 Macs
  54. if config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'].to_f < 11.0
  55. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
  56. end
  57. config.build_settings['CODE_SIGN_IDENTITY'] = ''
  58. config.build_settings['ONLY_ACTIVE_ARCH'] = 'NO'
  59. end
  60. end
  61. end