12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- source 'https://github.com/CocoaPods/Specs.git'
- platform :ios, '11.0'
- inhibit_all_warnings!
- use_frameworks!
- target 'JSJP_Student_sw' do
-
- # React Native
- #pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
- #pod 'React', :subspecs => [
- #'Core',
- #'RCTBlob',
- #'RCTAnimation',
- #'RCTActionSheet',
- #'RCTGeolocation',
- #'RCTImage',
- #'RCTLinkingIOS',
- #'RCTNetwork',
- #'RCTSettings',
- #'RCTText',
- #'RCTVibration',
- #'RCTWebSocket',
- #'DevSupport',
- #'ART',
- #'RCTCameraRoll',
- #'RCTPushNotification',
- #'RCTTest',
- #'RCTVibration',
- #'CxxBridge',
- #], :path => '../node_modules/react-native'
- # Architecture
- pod 'ReactorKit'
- pod 'SectionReactor'
-
- # Networking
- pod 'Alamofire'
- pod 'Moya/RxSwift'#, '~> 11.0.0'
- pod 'Kingfisher'
-
- # Model
- pod 'ObjectMapper'
-
- # Persistence
- pod 'RealmSwift'
-
- # Rx
- pod 'RxSwift'
- pod 'RxCocoa'
- pod 'RxDataSources'
- pod 'RxGesture'
- pod 'NSObject+Rx'
- pod 'RxOptional'
- pod 'RxViewController'
-
- # UI
- pod 'SnapKit'
- pod 'YYText'
- pod 'VTMagic', :git => 'https://github.com/tianzhuo112/VTMagic.git'
- pod 'FSPagerView'
- pod 'Toaster'
- pod 'ManualLayout'
-
- # Logging
- pod 'CocoaLumberjack/Swift'
-
- # Misc.
- pod 'SwiftyJSON'
- pod 'ReusableKit'
- pod 'ReusableKit/RxSwift' # with RxSwift extension
- pod 'GDPerformanceView-Swift'
- pod 'EmptyKit'
- pod 'ESPullToRefresh'
- pod 'ReachabilitySwift'
- pod 'Then'
- pod 'URLNavigator', '~> 2.2.0'
- pod 'SwiftyColor'
- pod 'SwiftyImage'
- pod 'SwiftTimer'
- pod 'SwiftDate'
- pod 'SwiftyUserDefaults'#, '4.0.0-alpha.1'
- pod 'CGFloatLiteral'
- pod 'Dollar'
- pod 'SwiftyFitsize' #适配-iphone-ipad等方案 支持 xib 和 storyboard
-
- end
- post_install do |installer|
- installer.pods_project.targets.each do |target|
- target.build_configurations.each do |config|
- config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
- end
- end
- end
|