Podfile 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. platform :ios, '13.0'
  2. inhibit_all_warnings!
  3. use_frameworks!
  4. source 'https://github.com/CocoaPods/Specs.git'
  5. target "YBVideo" do
  6. #友盟统计
  7. pod 'UMCCommon','2.1.1'
  8. pod 'UMCAnalytics','6.0.5'
  9. #pod 'UMCSecurityPlugins'
  10. #播放器'3.2.15'
  11. # 注意 1 :更新播放器三方库的时候 ZFVolumeBrightnessView 类 progressView.frame 改为
  12. # self.progressView.frame = CGRectMake(0, 0,min_view_w, min_view_h);
  13. # self.iconImageView.frame 注释掉或者 隐藏
  14. # 不执行上述两行可以选择继承ZFVolumeBrightnessView并重写这个类
  15. pod 'ZFPlayer','4.1.4'
  16. pod 'ZFPlayer/ControlView','4.1.4'
  17. pod 'ZFPlayer/ijkplayer','4.1.4'
  18. pod 'ZFPlayer/AVPlayer','4.1.4'
  19. # 注意 2 :如果使用的是金山播放器 初始化需要设置下
  20. # NSMutableDictionary *headerDic = [NSMutableDictionary dictionary];
  21. # [headerDic setObject:@"防盗链地址" forKey:@"Referer"];
  22. # [self.player setHttpHeaders:headerDic];
  23. #pod 'ZFPlayer/KSYMediaPlayer'
  24. # 腾讯IM
  25. pod 'TXIMSDK_Plus_iOS', '7.0.3754'
  26. pod 'TPNS-iOS', '1.3.9.2'
  27. #极光
  28. pod 'JPush','3.2.6'
  29. pod 'JMessage','3.9.1'
  30. #极光日志打印
  31. pod 'CocoaLumberjack','3.4.2'
  32. #支付宝
  33. pod 'AliPay','15.7.4.2'
  34. pod 'OpenSSL-for-iOS', '1.0.2.d.1'
  35. #ShareSDK
  36. pod 'mob_sharesdk','4.3.16'
  37. pod 'mob_sharesdk/ShareSDKPlatforms/QQ'
  38. pod 'mob_sharesdk/ShareSDKPlatforms/Apple'
  39. #pod 'mob_sharesdk/ShareSDKPlatforms/WeChat' #(微信sdk不带支付的命令)
  40. pod 'mob_sharesdk/ShareSDKPlatforms/WeChatFull' #(微信sdk带支付的命令,和上面不带支付的不能共存,只能选择一个)
  41. #腾讯SDK
  42. #pod 'TXLiteAVSDK_UGC' //'7.2.8932'-'7.5.9309' - '7.7.9458' '8.0.9643'
  43. # live-->'7.7.9458' dsp->'9.5.11344'
  44. pod 'TXLiteAVSDK_Professional','10.9.13148'
  45. #腾讯上传
  46. pod 'QCloudCOSXML','5.6.6'
  47. #七牛
  48. pod 'Qiniu','7.2.6'
  49. #socket
  50. pod 'Socket.IO-Client-Swift','15.2.0'
  51. #其他
  52. pod 'SDWebImage','5.2.5'
  53. pod 'SDCycleScrollView', '1.80'
  54. pod 'MJRefresh','3.7.5'
  55. pod 'MJExtension', '3.2.4'
  56. pod 'EBBannerView','1.1.2'
  57. pod 'AFNetworking','4.0.1'
  58. #'1.0.2'
  59. pod 'Masonry', '1.1.0'
  60. pod 'Bugly', '2.4.8'
  61. pod 'QBImagePickerController','3.4.0'
  62. pod 'GPUImage', '0.1.7'
  63. pod 'CWStatusBarNotification', '2.3.5'
  64. pod 'MBProgressHUD','1.1.0'
  65. pod 'SPUncaughtExceptionHandler','0.3.3'
  66. pod 'IQKeyboardManager','6.5.3'
  67. pod 'TYPagerController','2.1.2'
  68. pod 'JKCategories','1.9.2'
  69. pod 'DZNEmptyDataSet','1.8.1'
  70. # SVGAPlayer
  71. pod 'SVGAPlayer','2.3.5'
  72. # AT @功能
  73. pod 'HPGrowingTextView','1.1'
  74. pod 'MLLabel','1.10.5'
  75. pod 'YYText','1.0.7'
  76. #YYImage用来加载gif
  77. pod 'YYWebImage','1.0.5'
  78. #防止数组越界、字典为空
  79. pod 'SafeObject', '0.0.1'
  80. #picker
  81. #提示 "Select a maximum of %zd photos" 提示语已改为 ‘最多设置10张’
  82. #提示 "Select a minimum of %zd photos" ‘请选择不少于3张图片’
  83. #'3.2.7'
  84. pod 'TZImagePickerController','3.8.7'
  85. pod 'YCMenuView','1.2.0'
  86. pod 'SPPageMenu', '3.5.0'
  87. #AWS
  88. pod 'AWSS3','2.19.1'
  89. #Braintree
  90. pod 'BraintreeDropIn', "8.1.2"
  91. #openinstall
  92. pod 'libOpenInstallSDK','2.5.3'
  93. #pod 'ZZCircleProgress', '~> 0.2.1'
  94. pod 'XHWebImageAutoSize', "1.1.2"
  95. #
  96. pod 'AAChartKit', '9.2.0'
  97. post_install do |installer|
  98. installer.generated_projects.each do |project|
  99. project.targets.each do |target|
  100. target.build_configurations.each do |config|
  101. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
  102. end
  103. end
  104. end
  105. end
  106. end