Podfile 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. pod 'SAMKeychain' #钥匙串存储
  54. pod 'CryptoSwift', '~> 1.7.1'
  55. pod 'CocoaSecurity' # 加密
  56. end
  57. post_install do |installer|
  58. installer.pods_project.targets.each do |target|
  59. target.build_configurations.each do |config|
  60. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
  61. end
  62. end
  63. end