Podfile 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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. end
  75. post_install do |installer|
  76. installer.pods_project.targets.each do |target|
  77. target.build_configurations.each do |config|
  78. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
  79. end
  80. end
  81. end