platform :ios, '9.3' use_frameworks! ENV["COCOAPODS_DISABLE_STATS"] = "true" target "SuperShow" do inhibit_all_warnings! source 'https://cdn.cocoapods.org/' source 'http://svn.ouj.com:3000/billthas/ouj-specs' #****************************swift库************************start pod 'OJASwiftKit', :git => 'http://svn.ouj.com:3000/billthas/OJASwiftKit' #ouj的git上的基础库 pod 'R.swift' #将字符串变为变量的库 pod 'LXMWaterfallLayout' #CollectionViewLayout合集 pod 'lottie-ios' #'2.5.3'是OC的最后版本,之后就是Swift写的 # pod 'SwiftyStoreKit' # pod 'OJAResourceLoaderManager', '0.1.2' #视频边缓存边播 # pod 'FSPagerView', '0.8.1' #Banner # pod 'LXMDownloader' #文件下载工具 # pod 'LXMDownloader', :path => '/Users/luxiaoming/Documents/LXMGitHub/LXMDownloader' pod 'HandyJSON', '5.0.0' pod 'ReactiveCocoa', '10.0.0' pod 'CryptoSwift', '1.0.0' pod 'MarqueeLabel', '4.0.0' #******还在用swift4.2的库,主要是因为这些库要求最低版本ios10 #******pod会根据platform自动选择兼容的版本 pod 'WCDB.swift' #, '1.0.8.2' #微信开源的数据库,还不支持swift5.0 pod 'Kingfisher'# , '4.10.1' pod 'Alamofire' #, '4.8.2' pod 'SnapKit' #, '4.2.0' #autolayout库, #***********************************************************end #pod 'LXMPlayer', :path => '/Users/luxiaoming/Documents/LXMGitHub/LXMPlayer' pod 'LXMPlayer', :git => 'https://github.com/Phelthas/LXMPlayer.git' pod 'GPUImage', :git => 'http://svn.ouj.com:3000/zhongbaojian/WSSGPUImage.git' pod 'SSZipArchive' pod 'OJAKit', :git => 'http://svn.ouj.com:3000/billthas/OJAKit' #ouj的git上的基础库 pod 'OJAKit/SafeKit', :git => 'http://svn.ouj.com:3000/billthas/OJAKit' #ouj的git上的基础库 pod 'LXMBlockKit', :git => 'https://github.com/Phelthas/LXMBlockKit' #给button等加入block回调方法的库 pod 'LXMButtonImagePosition' #, '1.2.0' #控制button的image摆放的方法 pod 'LXMThirdLoginManager/SwiftSetting', '2.3.0' #swift项目用这一句,且要把LXMThirdLoginManager文件夹里的全部内容拖到工程里面;OC项目直接用pod 'LXMThirdLoginManager', '2.3.0'即可 pod 'DouyinOpenSDK', '~> 1.4.0' #抖音SDK # pod 'TBActionSheet' , '1.6.4' #actionSheet # pod 'WZLBadge', '1.2.6' # pod 'FMDB', '2.7.5' #数据库 # pod 'AFNetworking', '3.2.0' #网络库 pod 'pop', '1.0.12' #facebook动画框架 pod 'SDWebImage', '5.0.6' pod 'SVProgressHUD', '2.2.5' #loading pod 'UMCCommon' pod 'UMCAnalytics' pod 'MZFormSheetPresentationController', '2.4.3' #自定义弹出某个ViewController的控件 pod 'YYModel', '1.0.4' #json转model库 pod 'YYWebImage' , '1.0.5' pod 'YYText', '1.0.7' #富文本 pod 'YYImage', '1.0.4' #图片处理 pod 'MJRefresh', '3.2.0' #下拉刷新 pod 'CocoaSecurity', '1.2.4' #加密库 pod 'UITextView+Placeholder', '1.2.0' #让UITextView支持Placeholder # pod 'TZImagePickerController', '3.2.1' # 图片选择器 # pod 'SocketRocket', '0.5.1' ###########################调试工具start pod 'MLeaksFinder', :configurations => ['Debug','Debug-TEST'] pod 'FBRetainCycleDetector', :configurations => ['Debug','Debug-TEST'] pod 'LookinServer', :configurations => ['Debug','Debug-TEST'] # pod 'DoraemonKit/Core', '~> 1.2.1', :configurations => ['Debug','Debug-TEST'] # pod 'DoraemonKit/WithLogger', '~> 1.2.1', :configurations => ['Debug','Debug-TEST'] # pod 'DoraemonKit/WithLoad', '~> 1.2.1', :configurations => ['Debug','Debug-TEST'] # pod 'DoraemonKit/WithDatabase', '~> 1.2.1', :configurations => ['Debug','Debug-TEST'] ###########################调试工具end end post_install do |installer| installer.pods_project.targets.each do |target| if target.name == 'SnapKit' target.build_configurations.each do |config| config.build_settings['SWIFT_VERSION'] = '4.2' end end if target.name == 'Kingfisher' target.build_configurations.each do |config| config.build_settings['SWIFT_VERSION'] = '4.2' end end if target.name == 'Alamofire' target.build_configurations.each do |config| config.build_settings['SWIFT_VERSION'] = '4.2' end end end end