Podfile 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. source 'https://github.com/CocoaPods/Specs.git'
  2. platform :ios, '11.0'
  3. inhibit_all_warnings!
  4. use_frameworks!
  5. target 'JSJP_Student_sw' 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. pod 'SwiftyFitsize' #适配-iphone-ipad等方案 支持 xib 和 storyboard
  53. end
  54. post_install do |installer|
  55. installer.pods_project.targets.each do |target|
  56. target.build_configurations.each do |config|
  57. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
  58. end
  59. end
  60. end