Podfile 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. platform :ios, '9.0'
  2. use_frameworks!
  3. ENV["COCOAPODS_DISABLE_STATS"] = "true"
  4. target "SuperShow" do
  5. inhibit_all_warnings!
  6. source 'https://github.com/CocoaPods/Specs.git'
  7. source 'http://svn.ouj.com:3000/billthas/ouj-specs'
  8. #****************************swift库************************start
  9. pod 'OJASwiftKit', :git => 'http://svn.ouj.com:3000/billthas/OJASwiftKit' #ouj的git上的基础库
  10. pod 'R.swift' #将字符串变为变量的库
  11. pod 'LXMWaterfallLayout' #CollectionViewLayout合集
  12. pod 'lottie-ios' #'2.5.3'是OC的最后版本,之后就是Swift写的
  13. # pod 'SwiftyStoreKit'
  14. # pod 'OJAResourceLoaderManager', '0.1.2' #视频边缓存边播
  15. # pod 'FSPagerView', '0.8.1' #Banner
  16. # pod 'LXMDownloader' #文件下载工具
  17. # pod 'LXMDownloader', :path => '/Users/luxiaoming/Documents/LXMGitHub/LXMDownloader'
  18. pod 'HandyJSON', '5.0.0'
  19. pod 'ReactiveCocoa', '10.0.0'
  20. #******还在用swift4.2的库,主要是因为这些库要求最低版本ios10
  21. #******pod会根据platform自动选择兼容的版本
  22. pod 'WCDB.swift' #, '1.0.8.2' #微信开源的数据库,还不支持swift5.0
  23. pod 'Kingfisher'# , '4.10.1'
  24. pod 'Alamofire' #, '4.8.2'
  25. pod 'SnapKit' #, '4.2.0' #autolayout库,
  26. #***********************************************************end
  27. #pod 'LXMPlayer', :path => '/Users/luxiaoming/Documents/LXMGitHub/LXMPlayer'
  28. pod 'LXMPlayer', :git => 'https://github.com/Phelthas/LXMPlayer.git'
  29. pod 'GPUImage', :git => 'http://svn.ouj.com:3000/zhongbaojian/WSSGPUImage.git'
  30. pod 'SSZipArchive'
  31. pod 'OJAKit', :git => 'http://svn.ouj.com:3000/billthas/OJAKit' #ouj的git上的基础库
  32. pod 'OJAKit/SafeKit', :git => 'http://svn.ouj.com:3000/billthas/OJAKit' #ouj的git上的基础库
  33. pod 'LXMBlockKit', :git => 'https://github.com/Phelthas/LXMBlockKit' #给button等加入block回调方法的库
  34. pod 'LXMButtonImagePosition' #, '1.2.0' #控制button的image摆放的方法
  35. pod 'LXMThirdLoginManager/SwiftSetting', '2.3.0' #swift项目用这一句,且要把LXMThirdLoginManager文件夹里的全部内容拖到工程里面;OC项目直接用pod 'LXMThirdLoginManager', '2.3.0'即可
  36. pod 'DouyinOpenSDK', '~> 1.4.0' #抖音SDK
  37. # pod 'TBActionSheet' , '1.6.4' #actionSheet
  38. # pod 'WZLBadge', '1.2.6'
  39. # pod 'FMDB', '2.7.5' #数据库
  40. pod 'AFNetworking', '3.2.1' #网络库
  41. pod 'pop', '1.0.12' #facebook动画框架
  42. pod 'SDWebImage', '5.0.6'
  43. pod 'SVProgressHUD', '2.2.5' #loading
  44. pod 'UMCCommon'
  45. pod 'UMCAnalytics'
  46. pod 'MZFormSheetPresentationController', '2.4.3' #自定义弹出某个ViewController的控件
  47. pod 'YYModel', '1.0.4' #json转model库
  48. pod 'YYWebImage' , '1.0.5'
  49. pod 'YYText', '1.0.7' #富文本
  50. pod 'YYImage', '1.0.4' #图片处理
  51. pod 'MJRefresh', '3.2.0' #下拉刷新
  52. pod 'CocoaSecurity', '1.2.4' #加密库
  53. pod 'UITextView+Placeholder', '1.2.0' #让UITextView支持Placeholder
  54. # pod 'TZImagePickerController', '3.2.1' # 图片选择器
  55. # pod 'SocketRocket', '0.5.1'
  56. ###########################调试工具start
  57. pod 'MLeaksFinder', :configurations => ['Debug','Debug-TEST']
  58. pod 'FBRetainCycleDetector', :configurations => ['Debug','Debug-TEST']
  59. pod 'LookinServer', :configurations => ['Debug','Debug-TEST']
  60. ###########################调试工具end
  61. end
  62. post_install do |installer|
  63. installer.pods_project.targets.each do |target|
  64. if target.name == 'SnapKit'
  65. target.build_configurations.each do |config|
  66. config.build_settings['SWIFT_VERSION'] = '4.2'
  67. end
  68. end
  69. if target.name == 'Kingfisher'
  70. target.build_configurations.each do |config|
  71. config.build_settings['SWIFT_VERSION'] = '4.2'
  72. end
  73. end
  74. if target.name == 'Alamofire'
  75. target.build_configurations.each do |config|
  76. config.build_settings['SWIFT_VERSION'] = '4.2'
  77. end
  78. end
  79. end
  80. end