Podfile 1.8 KB

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