Podfile 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. # React Native
  7. #pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
  8. #pod 'React', :subspecs => [
  9. #'Core',
  10. #'RCTBlob',
  11. #'RCTAnimation',
  12. #'RCTActionSheet',
  13. #'RCTGeolocation',
  14. #'RCTImage',
  15. #'RCTLinkingIOS',
  16. #'RCTNetwork',
  17. #'RCTSettings',
  18. #'RCTText',
  19. #'RCTVibration',
  20. #'RCTWebSocket',
  21. #'DevSupport',
  22. #'ART',
  23. #'RCTCameraRoll',
  24. #'RCTPushNotification',
  25. #'RCTTest',
  26. #'RCTVibration',
  27. #'CxxBridge',
  28. #], :path => '../node_modules/react-native'
  29. # Architecture
  30. pod 'ReactorKit'
  31. pod 'SectionReactor'
  32. # Networking
  33. pod 'Alamofire'
  34. pod 'Moya/RxSwift'#, '~> 11.0.0'
  35. pod 'Kingfisher'
  36. # Model
  37. pod 'ObjectMapper'
  38. # Persistence
  39. pod 'RealmSwift'
  40. # Rx
  41. pod 'RxSwift'
  42. pod 'RxCocoa'
  43. pod 'RxDataSources'
  44. pod 'RxGesture'
  45. pod 'NSObject+Rx'
  46. pod 'RxOptional'
  47. pod 'RxViewController'
  48. # UI
  49. pod 'SnapKit'
  50. pod 'YYText'
  51. pod 'VTMagic', :git => 'https://github.com/tianzhuo112/VTMagic.git'
  52. pod 'FSPagerView'
  53. pod 'Toaster'
  54. pod 'ManualLayout'
  55. # Logging
  56. pod 'CocoaLumberjack/Swift'
  57. # Misc.
  58. pod 'SwiftyJSON'
  59. pod 'ReusableKit'
  60. pod 'ReusableKit/RxSwift' # with RxSwift extension
  61. pod 'GDPerformanceView-Swift'
  62. pod 'EmptyKit'
  63. pod 'ESPullToRefresh'
  64. pod 'ReachabilitySwift'
  65. pod 'Then'
  66. pod 'URLNavigator', '~> 2.2.0'
  67. pod 'SwiftyColor'
  68. pod 'SwiftyImage'
  69. pod 'SwiftTimer'
  70. pod 'SwiftDate'
  71. pod 'SwiftyUserDefaults'#, '4.0.0-alpha.1'
  72. pod 'CGFloatLiteral'
  73. pod 'Dollar'
  74. pod 'SwiftyFitsize' #适配-iphone-ipad等方案 支持 xib 和 storyboard
  75. end
  76. post_install do |installer|
  77. installer.pods_project.targets.each do |target|
  78. target.build_configurations.each do |config|
  79. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
  80. end
  81. end
  82. end