Podfile 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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 'CHIPageControl'
  26. pod 'TYCyclePagerView'
  27. # 友盟
  28. # pod 'UMCommon'
  29. # pod 'UMDevice'
  30. # pod 'UMAPM'
  31. ## 可选,UI模块(分享面板),由原来的UMCShare/UI变为了UMShare/UI
  32. # pod 'UMShare/UI'
  33. ## 分享SDK 在线依赖其它平台仅支持手动集成[友盟+官网-开发者中心-sdk下载页-sdk下载]
  34. ## pod 'UMShare/Social/WeChat'
  35. # pod 'UMShare/Social/Sina'
  36. # pod 'UMShare/Social/QQ'
  37. pod 'SSZipArchive'
  38. pod 'SocketRocket'
  39. pod "iOS-KS3SDK", "~>1.0.5"
  40. # pod "WechatOpenSDK"
  41. pod 'AlipaySDK-iOS'
  42. #lottie 动画库
  43. pod 'lottie-ios', '~> 2.5'
  44. # 集成聊天功能
  45. pod 'TUIChat/UI_Classic'
  46. # 集成会话功能
  47. pod 'TUIConversation/UI_Classic'
  48. # 集成群组功能
  49. pod 'TUIGroup/UI_Classic'
  50. # 集成搜索功能(需要购买旗舰版套餐)
  51. pod 'TUISearch/UI_Classic'
  52. # 接入腾讯直播
  53. pod 'TXLiteAVSDK_Professional'
  54. # Pods for KulexiuForStudent
  55. # 腾讯云存储
  56. pod 'QCloudCOSXML/Transfer'
  57. pod 'TZImagePickerController'
  58. pod 'CocoaHTTPServer'
  59. target 'KulexiuForStudentTests' do
  60. inherit! :search_paths
  61. # Pods for testing
  62. end
  63. target 'KulexiuForStudentUITests' do
  64. # Pods for testing
  65. end
  66. end
  67. #Pods config
  68. #Fix Xcode14 Bundle target error
  69. post_install do |installer|
  70. installer.generated_projects.each do |project|
  71. project.targets.each do |target|
  72. target.build_configurations.each do |config|
  73. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
  74. end
  75. end
  76. end
  77. end