Podfile 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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 'KulexiuForTeacher' do
  6. # 忽略引入库的所有警告(强迫症者的福音啊)
  7. inhibit_all_warnings!
  8. # Uncomment the next line if you're using Swift or would like to use dynamic frameworks
  9. #use_frameworks!
  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 'TYCyclePagerView'
  26. pod 'TZImagePickerController'
  27. #lottie 动画库
  28. pod 'lottie-ios', '~> 2.5'
  29. # 友盟
  30. # pod 'UMCommon'
  31. # pod 'UMDevice'
  32. # pod 'UMAPM'
  33. # # 可选,UI模块(分享面板),由原来的UMCShare/UI变为了UMShare/UI
  34. # pod 'UMShare/UI'
  35. # # 分享SDK 在线依赖其它平台仅支持手动集成[友盟+官网-开发者中心-sdk下载页-sdk下载]
  36. # pod 'UMShare/Social/WeChat'
  37. # pod 'UMShare/Social/Sina'
  38. # pod 'UMShare/Social/QQ'
  39. pod 'SSZipArchive'
  40. pod 'SocketRocket'
  41. pod 'RongCloudIM/IMLib', '~> 5.3.1'
  42. pod 'RongCloudIM/IMKit', '~> 5.3.1'
  43. pod 'RongCloudIM/Sight', '~> 5.3.1'
  44. pod 'RongCloudRTC/RongRTCLib','~> 5.3.1.2'
  45. pod 'RongCloudRTC/RongFaceBeautifier','~> 5.3.1.2'
  46. pod 'RongCloudRTC/RongRTCPlayer','~> 5.3.1.2'
  47. pod "iOS-KS3SDK", "~>1.0.5"
  48. # pod "WechatOpenSDK"
  49. pod 'AlipaySDK-iOS'
  50. # 集成聊天功能
  51. pod 'TUIChat/UI_Classic'
  52. # 集成会话功能
  53. pod 'TUIConversation/UI_Classic'
  54. # 集成群组功能
  55. pod 'TUIGroup/UI_Classic'
  56. # 集成搜索功能(需要购买旗舰版套餐)
  57. pod 'TUISearch/UI_Classic'
  58. # 接入腾讯直播
  59. pod 'TXLiteAVSDK_Professional'
  60. # Pods for KulexiuForTeacher b
  61. end
  62. #Pods config
  63. #Fix Xcode14 Bundle target error
  64. post_install do |installer|
  65. installer.generated_projects.each do |project|
  66. project.targets.each do |target|
  67. target.build_configurations.each do |config|
  68. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
  69. end
  70. end
  71. end
  72. end