Podfile 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. platform :ios, '12.0'
  2. use_frameworks!
  3. target 'MSYOUPAI' do
  4. pod 'Masonry'
  5. # pod 'MJRefresh'
  6. pod 'MJExtension'
  7. # pod 'BRPickerView'
  8. # pod 'ZFPlayer'
  9. # pod 'YBImageBrowser'
  10. # pod 'YBPopupMenu'
  11. # pod 'ZQPlayer'
  12. # pod 'SDCycleScrollView'
  13. # pod 'IQActionSheetPickerView'
  14. # pod 'TYCyclePagerView'
  15. # pod 'UITableView+FDTemplateLayoutCell'
  16. pod 'PixelFree'
  17. pod 'SVGAPlayer'
  18. pod 'VODUpload'
  19. pod 'KTVHTTPCache'
  20. pod 'Nama-lite'
  21. #pod 'FURenderKit'
  22. pod 'YYText'
  23. pod 'YYModel'
  24. # 宫格视图
  25. pod 'BAGridView'
  26. # 网页视图
  27. pod 'BAWKWebView'
  28. # 文本框
  29. pod 'BATextField'
  30. # Log美化
  31. pod 'PrintBeautifulLog'
  32. # 瀑布流布局
  33. pod 'CHTCollectionViewWaterfallLayout/ObjC'
  34. pod 'JQCollectionViewAlignLayout'
  35. pod 'GKNavigationBarViewController'
  36. # 分类选择器、分页视图
  37. pod 'JXCategoryView'
  38. pod 'JXPagingView/Pager'
  39. pod 'LYEmptyView'
  40. pod "ReactiveObjC",'3.1.1'
  41. pod 'AgoraRtcEngine_Special_iOS', '4.2.6.11'
  42. pod 'PGDatePicker'
  43. # 下拉刷新
  44. pod 'MJRefresh'
  45. #pod 'SDWebImage'
  46. pod 'SDWebImageAPNGCoder'
  47. pod 'SDWebImage/GIF'
  48. pod 'SDWebImage/WebP'
  49. pod 'JhtMarquee'
  50. pod 'IQKeyboardManager'
  51. pod 'lottie-ios_Oc'
  52. pod 'libOpenInstallSDK'
  53. pod 'TFHpple'
  54. pod 'UMCommon'
  55. pod 'UMPush'
  56. pod 'UMDevice'
  57. #读取相册视频
  58. pod 'TZImagePickerController/Basic', '3.8.8'
  59. # 友盟性能监测
  60. pod 'UMAPM'
  61. #pod 'UMShare/Social/WeChat' 与微信支付存在冲突
  62. pod 'UMShare/Social/ReducedWeChat'
  63. pod 'UMShare/Social/QQ'
  64. pod 'UMCCommonLog'
  65. # 微信SDK
  66. pod 'WechatOpenSDK'
  67. # 支付宝SDK
  68. pod 'AlipaySDK-iOS'
  69. # 网易云信
  70. #pod 'NIMSDK_LITE'
  71. #pod 'MSYConfig', :path=>'MSYConfig'
  72. pod 'MSYConfig/encrypt', :path=>'MSYConfig' #对字符串混编
  73. pod 'LookinServer', :configurations => ['Debug']
  74. #pod 'YDAvoidCrashKit' #防崩溃
  75. end
  76. post_install do |installer|
  77. installer.pods_project.targets.each do |target|
  78. target.build_configurations.each do |config|
  79. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0’
  80. config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
  81. end
  82. end
  83. end