Podfile 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. # Pods for KulexiuForStudent
  58. target 'KulexiuForStudentTests' do
  59. inherit! :search_paths
  60. # Pods for testing
  61. end
  62. target 'KulexiuForStudentUITests' do
  63. # Pods for testing
  64. end
  65. end
  66. #Pods config
  67. #Fix Xcode14 Bundle target error
  68. post_install do |installer|
  69. installer.generated_projects.each do |project|
  70. project.targets.each do |target|
  71. target.build_configurations.each do |config|
  72. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
  73. end
  74. end
  75. end
  76. end