Podfile 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. # Logging
  33. pod 'CocoaLumberjack/Swift'
  34. # Misc.
  35. pod 'SwiftyJSON'
  36. pod 'ReusableKit'
  37. pod 'ReusableKit/RxSwift' # with RxSwift extension
  38. pod 'GDPerformanceView-Swift'
  39. pod 'EmptyKit'
  40. pod 'ESPullToRefresh'
  41. pod 'ReachabilitySwift'
  42. pod 'Then'
  43. pod 'URLNavigator', '~> 2.2.0'
  44. pod 'SwiftyColor'
  45. pod 'SwiftyImage'
  46. pod 'SwiftTimer'
  47. pod 'SwiftDate'
  48. pod 'SwiftyUserDefaults'#, '4.0.0-alpha.1'
  49. pod 'CGFloatLiteral'
  50. pod 'Dollar'
  51. pod 'SwiftyFitsize' #适配-iphone-ipad等方案 支持 xib 和 storyboard
  52. #OC 库
  53. pod 'QMUIKit' # 腾讯UI控件
  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['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
  59. end
  60. end
  61. end