Podfile 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. # Uncomment the next line to define a global platform for your project
  2. platform :ios, '12.0'
  3. # 防止 TUIKit 组件里的 *.xcassets 与您项目里面冲突。
  4. install! 'cocoapods', :disable_input_output_paths => true
  5. target 'KulexiuForStudent' do
  6. # Comment the next line if you don't want to use dynamic frameworks
  7. # use_frameworks!
  8. # 忽略引入库的所有警告(强迫症者的福音啊)
  9. inhibit_all_warnings!
  10. pod 'MJExtension', '~> 3.3.0'
  11. pod 'AFNetworking', '~> 4.0'
  12. pod 'Masonry', '~> 1.1.0'
  13. pod 'MBProgressHUD', '~> 1.2.0'
  14. pod 'SDWebImage', '~> 5.16.0'
  15. pod 'MJRefresh', '~> 3.1.12'
  16. pod 'IQKeyboardManager'
  17. pod 'Reachability', '~> 3.2'
  18. pod 'JCore', '2.7.1-noidfa'
  19. pod 'JPush', '4.3.0'
  20. pod 'JXCategoryView'
  21. pod 'JXPagingView/Pager'
  22. pod 'Bugly'
  23. pod 'Whiteboard'
  24. pod 'RSKImageCropper'
  25. # pod 'ZKCycleScrollView'
  26. pod 'CHIPageControl'
  27. pod 'TYCyclePagerView'
  28. # 友盟
  29. # pod 'UMCommon'
  30. # pod 'UMDevice'
  31. # pod 'UMAPM'
  32. ## 可选,UI模块(分享面板),由原来的UMCShare/UI变为了UMShare/UI
  33. # pod 'UMShare/UI'
  34. ## 分享SDK 在线依赖其它平台仅支持手动集成[友盟+官网-开发者中心-sdk下载页-sdk下载]
  35. ## pod 'UMShare/Social/WeChat'
  36. # pod 'UMShare/Social/Sina'
  37. # pod 'UMShare/Social/QQ'
  38. pod 'SSZipArchive'
  39. pod 'SocketRocket'
  40. pod 'RongCloudIM/IMLib', '~> 5.3.1'
  41. pod 'RongCloudIM/IMKit', '~> 5.3.1'
  42. pod 'RongCloudIM/Sight', '~> 5.3.1'
  43. pod 'RongCloudRTC/RongRTCLib','~> 5.3.1.2'
  44. pod "iOS-KS3SDK", "~>1.0.5"
  45. # pod "WechatOpenSDK"
  46. pod 'AlipaySDK-iOS'
  47. #lottie 动画库
  48. pod 'lottie-ios', '~> 2.5'
  49. # 集成聊天功能
  50. pod 'TUIChat/UI_Classic'
  51. # 集成会话功能
  52. pod 'TUIConversation/UI_Classic'
  53. # 集成群组功能
  54. pod 'TUIGroup/UI_Classic'
  55. # 集成搜索功能(需要购买旗舰版套餐)
  56. pod 'TUISearch/UI_Classic'
  57. # 接入腾讯直播
  58. pod 'TXLiteAVSDK_Professional'
  59. # Pods for KulexiuForStudent
  60. target 'KulexiuForStudentTests' do
  61. inherit! :search_paths
  62. # Pods for testing
  63. end
  64. target 'KulexiuForStudentUITests' do
  65. # Pods for testing
  66. end
  67. end
  68. #Pods config
  69. #Fix Xcode14 Bundle target error
  70. post_install do |installer|
  71. installer.generated_projects.each do |project|
  72. project.targets.each do |target|
  73. target.build_configurations.each do |config|
  74. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
  75. end
  76. end
  77. end
  78. end