12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- platform :ios, '10.0'
- 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 'R.swift' #将字符串变为变量的库
- pod 'lottie-ios', '3.1.3' #'2.5.3'是OC的最后版本,之后就是Swift写的
- pod 'HandyJSON', '5.0.0'
- pod 'ReactiveCocoa', '10.1.0'
- pod 'CryptoSwift', '1.0.0'
- pod 'MarqueeLabel', '4.0.0'
- pod 'DeviceKit', '2.2.0'
- pod 'Alamofire', '4.9.0'
- pod 'Kingfisher', '5.8.3'
- pod 'SnapKit', '5.0.1'
-
- pod 'WCDB.swift' #, '1.0.8.2' #微信开源的数据库,还不支持swift5.0
- ###########################私有库
- pod 'OJASwiftKit', :git => 'http://svn.ouj.com:3000/duowan_iOS/OJASwiftKit.git' #ouj的git上的基础库
- pod 'GPUImage', :git => 'http://svn.ouj.com:3000/duowan_iOS/WSSGPUImage.git'
- pod 'OJAKit', :git => 'http://svn.ouj.com:3000/duowan_iOS/OJAKit.git' #ouj的git上的基础库
- pod 'OJAKit/SafeKit', :git => 'http://svn.ouj.com:3000/duowan_iOS/OJAKit.git' #ouj的git上的基础库
- pod 'YYKit', :git => 'http://svn.ouj.com:3000/duowan_iOS/YYKit.git'
- pod 'TZImagePicker', :git => 'http://svn.ouj.com:3000/duowan_iOS/TZImagePicker.git'
-
- pod 'LXMPlayer', :git => 'https://github.com/Phelthas/LXMPlayer.git'
- pod 'LXMWaterfallLayout'
- 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'即可
-
- ###########################OC库
- pod 'pop', '1.0.12' #facebook动画框架
- pod 'SVProgressHUD', '2.2.5' #loading
- pod 'MZFormSheetPresentationController', '2.4.3' #自定义弹出某个ViewController的控件
- pod 'MJRefresh', '3.2.0' #下拉刷新
- pod 'CocoaSecurity', '1.2.4' #加密库
- pod 'SSZipArchive'
-
- ###########################第三方SDK
- pod 'DouyinOpenSDK', '~> 1.4.0' #抖音SDK
- pod 'UMCCommon'
- pod 'UMCAnalytics'
- ###########################调试工具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
|