Podfile 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. pod 'PGDatePicker'
  36. # Logging
  37. pod 'CocoaLumberjack/Swift'
  38. # Misc.
  39. pod 'SwiftyJSON'
  40. pod 'ReusableKit'
  41. pod 'ReusableKit/RxSwift' # with RxSwift extension
  42. pod 'GDPerformanceView-Swift'
  43. pod 'EmptyKit'
  44. pod 'ESPullToRefresh'
  45. pod 'ReachabilitySwift'
  46. pod 'Then'
  47. pod 'URLNavigator', '~> 2.2.0'
  48. pod 'SwiftyColor'
  49. pod 'SwiftyImage'
  50. pod 'SwiftTimer'
  51. pod 'SwiftDate'
  52. pod 'SwiftyUserDefaults'#, '4.0.0-alpha.1'
  53. pod 'CGFloatLiteral'
  54. pod 'Dollar'
  55. #pod <友盟+SDK名> 按需复制相应SDK名称代码
  56. pod 'UMCommon' #必须集成
  57. pod 'UMDevice' #必须集成
  58. #依赖库
  59. pod 'UMCCommonLog' #可选,日志插件
  60. end
  61. post_install do |installer|
  62. installer.pods_project.targets.each do |target|
  63. target.build_configurations.each do |config|
  64. config.build_settings['ENABLE_BITCODE'] = 'NO'
  65. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
  66. end
  67. end
  68. end