Podfile 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. platform :ios, '9.3'
  2. use_frameworks!
  3. ENV["COCOAPODS_DISABLE_STATS"] = "true"
  4. target "SuperShow" do
  5. inhibit_all_warnings!
  6. source 'https://cdn.cocoapods.org/'
  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. pod 'CryptoSwift', '1.0.0'
  21. pod 'mobile-ffmpeg-audio', '4.2.2.LTS'
  22. pod 'MarqueeLabel', '4.0.0'
  23. #******还在用swift4.2的库,主要是因为这些库要求最低版本ios10
  24. #******pod会根据platform自动选择兼容的版本
  25. pod 'WCDB.swift' #, '1.0.8.2' #微信开源的数据库,还不支持swift5.0
  26. pod 'Kingfisher'# , '4.10.1'
  27. pod 'Alamofire' #, '4.8.2'
  28. pod 'SnapKit' #, '4.2.0' #autolayout库,
  29. #***********************************************************end
  30. #pod 'LXMPlayer', :path => '/Users/luxiaoming/Documents/LXMGitHub/LXMPlayer'
  31. pod 'LXMPlayer', :git => 'https://github.com/Phelthas/LXMPlayer.git'
  32. pod 'GPUImage', :git => 'http://svn.ouj.com:3000/zhongbaojian/WSSGPUImage.git'
  33. pod 'SSZipArchive'
  34. pod 'OJAKit', :git => 'http://svn.ouj.com:3000/billthas/OJAKit' #ouj的git上的基础库
  35. pod 'OJAKit/SafeKit', :git => 'http://svn.ouj.com:3000/billthas/OJAKit' #ouj的git上的基础库
  36. pod 'LXMBlockKit', :git => 'https://github.com/Phelthas/LXMBlockKit' #给button等加入block回调方法的库
  37. pod 'LXMButtonImagePosition' #, '1.2.0' #控制button的image摆放的方法
  38. pod 'LXMThirdLoginManager/SwiftSetting', '2.3.0' #swift项目用这一句,且要把LXMThirdLoginManager文件夹里的全部内容拖到工程里面;OC项目直接用pod 'LXMThirdLoginManager', '2.3.0'即可
  39. pod 'DouyinOpenSDK', '~> 1.4.0' #抖音SDK
  40. # pod 'TBActionSheet' , '1.6.4' #actionSheet
  41. # pod 'WZLBadge', '1.2.6'
  42. # pod 'FMDB', '2.7.5' #数据库
  43. pod 'AFNetworking', '3.2.1' #网络库
  44. pod 'pop', '1.0.12' #facebook动画框架
  45. pod 'SDWebImage', '5.0.6'
  46. pod 'SVProgressHUD', '2.2.5' #loading
  47. pod 'UMCCommon'
  48. pod 'UMCAnalytics'
  49. pod 'MZFormSheetPresentationController', '2.4.3' #自定义弹出某个ViewController的控件
  50. pod 'YYModel', '1.0.4' #json转model库
  51. pod 'YYWebImage' , '1.0.5'
  52. pod 'YYText', '1.0.7' #富文本
  53. pod 'YYImage', '1.0.4' #图片处理
  54. pod 'MJRefresh', '3.2.0' #下拉刷新
  55. pod 'CocoaSecurity', '1.2.4' #加密库
  56. pod 'UITextView+Placeholder', '1.2.0' #让UITextView支持Placeholder
  57. # pod 'TZImagePickerController', '3.2.1' # 图片选择器
  58. # pod 'SocketRocket', '0.5.1'
  59. ###########################调试工具start
  60. pod 'MLeaksFinder', :configurations => ['Debug','Debug-TEST']
  61. pod 'FBRetainCycleDetector', :configurations => ['Debug','Debug-TEST']
  62. pod 'LookinServer', :configurations => ['Debug','Debug-TEST']
  63. pod 'DoraemonKit/Core', '~> 1.2.1', :configurations => ['Debug','Debug-TEST']
  64. pod 'DoraemonKit/WithLogger', '~> 1.2.1', :configurations => ['Debug','Debug-TEST']
  65. pod 'DoraemonKit/WithLoad', '~> 1.2.1', :configurations => ['Debug','Debug-TEST']
  66. pod 'DoraemonKit/WithDatabase', '~> 1.2.1', :configurations => ['Debug','Debug-TEST']
  67. ###########################调试工具end
  68. end
  69. post_install do |installer|
  70. installer.pods_project.targets.each do |target|
  71. if target.name == 'SnapKit'
  72. target.build_configurations.each do |config|
  73. config.build_settings['SWIFT_VERSION'] = '4.2'
  74. end
  75. end
  76. if target.name == 'Kingfisher'
  77. target.build_configurations.each do |config|
  78. config.build_settings['SWIFT_VERSION'] = '4.2'
  79. end
  80. end
  81. if target.name == 'Alamofire'
  82. target.build_configurations.each do |config|
  83. config.build_settings['SWIFT_VERSION'] = '4.2'
  84. end
  85. end
  86. end
  87. end