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