123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- source 'https://github.com/CocoaPods/Specs.git'
- platform :ios, '12.0'
- inhibit_all_warnings!
- use_frameworks!
- target 'JiaPeiManage' do
-
- # 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'
- pod 'QMUIKit' # 腾讯UI控件
- pod 'SDWebImage'
- pod 'SDWebImageWebPCoder', '0.8.3'
- pod 'PGDatePicker'
- pod 'Hero'
- pod 'JXPhotoBrowser', '~> 3.1.3'
- # 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 <友盟+SDK名> 按需复制相应SDK名称代码
- pod 'UMCommon' #必须集成
- pod 'UMDevice' #必须集成
- #依赖库
- pod 'UMCCommonLog' #可选,日志插件
-
- pod 'Bugly' #bugly线上bug
- #微信绑定 - sdk
- pod 'WechatOpenSDK-XCFramework', '~> 2.0.2'
- end
- post_install do |installer|
- installer.pods_project.targets.each do |target|
- target.build_configurations.each do |config|
- config.build_settings['ENABLE_BITCODE'] = 'NO'
- config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
- end
- end
- end
|