# Uncomment the next line to define a global platform for your project
|
platform :ios, '10.0'
|
source 'https://github.com/CocoaPods/Specs.git'
|
target 'OKProject' do
|
# Comment the next line if you don't want to use dynamic frameworks
|
use_frameworks!
|
|
# Pods for OKProject
|
#网络请求
|
pod 'Alamofire'
|
pod 'Moya/RxSwift'
|
#刷新
|
pod 'MJRefresh'
|
#图片加载
|
pod 'Kingfisher'
|
pod 'SwiftEntryKit'
|
#自动布局
|
pod 'SnapKit'
|
pod 'RxCocoa'
|
pod 'RxSwift'
|
#为我们提供 rx_disposeBag
|
pod 'NSObject+Rx'
|
pod 'MBProgressHUD'
|
pod 'HandyJSON'
|
pod 'IQKeyboardManager'
|
pod 'SwiftDate'
|
#多级界面
|
pod 'VTMagic'
|
pod 'DZNEmptyDataSet'
|
pod 'TTTAttributedLabel'
|
pod 'SwifterSwift'
|
#高德
|
pod 'AMapSearch-NO-IDFA'
|
pod 'AMapLocation-NO-IDFA'
|
#已包含3D地图,无需单独引入3D地图
|
pod 'AMapNavi-NO-IDFA'
|
pod 'AMapTrack-NO-IDFA'
|
pod 'RHSocketKit/Extend'
|
pod 'HCSStarRatingView'
|
# 分享
|
#pod 'UMengUShare/Social/ReducedWeChat'
|
#pod 'UMengUShare/Social/ReducedQQ'
|
#二维码
|
pod 'SGQRCode'
|
pod 'AliyunOSSiOS'
|
#支付
|
#pod 'YHICBCPaySDK'
|
|
pod 'Lantern','1.1.2' #图片浏览器
|
|
pod 'QMUIKit','4.3.0'
|
pod 'TZImagePickerController','3.7.6'
|
pod 'FFPage', '2.3.0' #分页
|
pod 'SPPageMenu','3.5.0'
|
pod 'UserDefaultsStore','1.5.0'
|
|
|
#pod 'JCore' # 可选项,也可由pod 'JPush'自动获取
|
#pod 'JPush' # 必选项
|
|
post_install do |installer|
|
installer.generated_projects.each do |project|
|
project.targets.each do |target|
|
target.build_configurations.each do |config|
|
config.build_settings['CODE_SIGN_IDENTITY'] = ''
|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
|
end
|
end
|
end
|
end
|
end
|