Podfile 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. source 'https://github.com/CocoaPods/Specs.git'
  2. platform :ios, '12.0'
  3. inhibit_all_warnings!
  4. use_frameworks!
  5. target 'JiaPeiManage' do
  6. # Architecture
  7. pod 'ReactorKit'
  8. pod 'SectionReactor'
  9. # Networking
  10. pod 'Alamofire'
  11. pod 'Moya/RxSwift'#, '~> 11.0.0'
  12. pod 'Kingfisher'
  13. # Model
  14. pod 'ObjectMapper'
  15. # Persistence
  16. pod 'RealmSwift'
  17. # Rx
  18. pod 'RxSwift'
  19. pod 'RxCocoa'
  20. pod 'RxDataSources'
  21. pod 'RxGesture'
  22. pod 'NSObject+Rx'
  23. pod 'RxOptional'
  24. pod 'RxViewController'
  25. # UI
  26. pod 'SnapKit'
  27. pod 'YYText'
  28. pod 'VTMagic', :git => 'https://github.com/tianzhuo112/VTMagic.git'
  29. pod 'FSPagerView'
  30. pod 'Toaster'
  31. pod 'ManualLayout'
  32. pod 'QMUIKit' # 腾讯UI控件
  33. pod 'SDWebImage'
  34. pod 'SDWebImageWebPCoder', '0.8.3'
  35. # Logging
  36. pod 'CocoaLumberjack/Swift'
  37. # Misc.
  38. pod 'SwiftyJSON'
  39. pod 'ReusableKit'
  40. pod 'ReusableKit/RxSwift' # with RxSwift extension
  41. pod 'GDPerformanceView-Swift'
  42. pod 'EmptyKit'
  43. pod 'ESPullToRefresh'
  44. pod 'ReachabilitySwift'
  45. pod 'Then'
  46. pod 'URLNavigator', '~> 2.2.0'
  47. pod 'SwiftyColor'
  48. pod 'SwiftyImage'
  49. pod 'SwiftTimer'
  50. pod 'SwiftDate'
  51. pod 'SwiftyUserDefaults'#, '4.0.0-alpha.1'
  52. pod 'CGFloatLiteral'
  53. pod 'Dollar'
  54. end
  55. post_install do |installer|
  56. installer.pods_project.targets.each do |target|
  57. target.build_configurations.each do |config|
  58. config.build_settings['ENABLE_BITCODE'] = 'NO'
  59. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
  60. end
  61. end
  62. end