Podfile 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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 "iOS-KS3SDK", "~>1.0.5"
  42. # pod "WechatOpenSDK"
  43. pod 'AlipaySDK-iOS'
  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. # 腾讯云存储
  55. pod 'QCloudCOSXML/Transfer'
  56. pod 'CocoaHTTPServer'
  57. # Pods for KulexiuForTeacher b
  58. end
  59. #Pods config
  60. #Fix Xcode14 Bundle target error
  61. post_install do |installer|
  62. installer.generated_projects.each do |project|
  63. project.targets.each do |target|
  64. target.build_configurations.each do |config|
  65. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
  66. end
  67. end
  68. end
  69. end