Closed CoderDoraemon closed 6 years ago
Show your podfile
.
source 'https://github.com/CocoaPods/Specs.git' source 'https://github.com/aliyun/aliyun-specs.git'
platform :ios, '9.0'
inhibit_all_warnings!
def common_Pods
use_frameworks!
# 下载图片
pod 'Kingfisher'
pod 'IBAnimatable'
# Moya
pod 'Moya/RxSwift'
# 响应式框架
pod 'RxSwift'
# Tableview 和 CollectionView 的Rx封装
pod 'RxCocoa'
pod 'Then'
pod 'DefaultsKit'
# JSON 转 Model
pod 'HandyJSON', '~> 4.2.0-beta1'
# 布局
pod 'SnapKit'
# 颜色框架
pod 'ChameleonFramework'
# 键盘处理
pod 'IQKeyboardManagerSwift'
# 菊花
pod 'SVProgressHUD'
# 为我们提供 rx_disposeBag
pod 'NSObject+Rx'
# 加密库
pod 'CryptoSwift'
#上下拉刷新控件
pod 'MJRefresh'
#日期处理库
pod 'SwiftDate'
pod 'Tiercel'
# 空数据列表占位图
pod 'DZNEmptyDataSet'
# 右滑返回
pod 'FDFullscreenPopGesture'
pod 'RxDataSources'
# 移动端数据库
pod 'WCDB.swift', '1.0.6.2'
# 异步渲染UI框架
pod 'YYKit'
#图片选择控件
pod 'CLImagePickerTool'
pod 'FCUUID'
pod 'JXPhotoBrowser'
pod 'Starscream'
# U-Share SDK UI模块(分享面板,建议添加)
pod 'UMCShare/UI'
# 集成微信(精简版0.2M)
pod 'UMCShare/Social/ReducedWeChat'
# 集成QQ/QZone/TIM(精简版0.5M)
pod 'UMCShare/Social/ReducedQQ'
pod 'Charts'
# 阿里云OSS
pod 'AliyunOSSiOS'
pod 'AlicloudPush'
pod 'MagicWindowSDKBitcode'
pod 'Zhugeio'
end
target 'JianZhongBang' do
common_Pods
target 'JianZhongBangTests' do inherit! :search_paths
end
target 'JianZhongBangUITests' do inherit! :search_paths
end
post_install do |installer|
# 需要指定编译版本的第三方的名称
myTargets = ['WCDBOptimizedSQLCipher', 'SQLiteRepairKit']
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
if target.name == 'Charts'
config.build_settings['SWIFT_VERSION'] = '4.2'
else
config.build_settings['SWIFT_VERSION'] = '4.1'
end
end
if myTargets.include? target.name
target.build_configurations.each do |config|
config.build_settings['APPLICATION_EXTENSION_API_ONLY'] = 'YES'
end
end
end
end
end
Why would you specific the WCDBOptimizedSQLCipher
and SQLiteRepairKit
?
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
The language of WCDB
The version of WCDB
The platform of WCDB
The installation of WCDB
What's the issue?