Podfile 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. # Logging
  34. pod 'CocoaLumberjack/Swift'
  35. # Misc.
  36. pod 'SwiftyJSON'
  37. pod 'ReusableKit'
  38. pod 'ReusableKit/RxSwift' # with RxSwift extension
  39. pod 'GDPerformanceView-Swift'
  40. pod 'EmptyKit'
  41. pod 'ESPullToRefresh'
  42. pod 'ReachabilitySwift'
  43. pod 'Then'
  44. pod 'URLNavigator', '~> 2.2.0'
  45. pod 'SwiftyColor'
  46. pod 'SwiftyImage'
  47. pod 'SwiftTimer'
  48. pod 'SwiftDate'
  49. pod 'SwiftyUserDefaults'#, '4.0.0-alpha.1'
  50. pod 'CGFloatLiteral'
  51. pod 'Dollar'
  52. end
  53. post_install do |installer|
  54. installer.pods_project.targets.each do |target|
  55. target.build_configurations.each do |config|
  56. config.build_settings['ENABLE_BITCODE'] = 'NO'
  57. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
  58. end
  59. end
  60. end