Podfile 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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 'JCore', '2.7.1-noidfa'
  11. pod 'JPush', '4.3.0'
  12. pod 'Bugly'
  13. pod 'Whiteboard'
  14. pod 'RSKImageCropper'
  15. pod 'TYCyclePagerView'
  16. # 友盟
  17. # pod 'UMCommon'
  18. # pod 'UMDevice'
  19. # pod 'UMAPM'
  20. # # 可选,UI模块(分享面板),由原来的UMCShare/UI变为了UMShare/UI
  21. # pod 'UMShare/UI'
  22. # # 分享SDK 在线依赖其它平台仅支持手动集成[友盟+官网-开发者中心-sdk下载页-sdk下载]
  23. # pod 'UMShare/Social/WeChat'
  24. # pod 'UMShare/Social/Sina'
  25. # pod 'UMShare/Social/QQ'
  26. pod 'SSZipArchive'
  27. # pod "WechatOpenSDK"
  28. pod 'AlipaySDK-iOS'
  29. # 集成聊天功能
  30. pod 'TUIChat/UI_Classic', '7.4.4643'
  31. # 集成会话功能
  32. pod 'TUIConversation/UI_Classic', '7.4.4643'
  33. # 集成群组功能
  34. pod 'TUIGroup/UI_Classic', '7.4.4643'
  35. # 集成搜索功能(需要购买旗舰版套餐)
  36. pod 'TUISearch/UI_Classic', '7.4.4643'
  37. # 接入腾讯直播
  38. pod 'TXLiteAVSDK_Professional', '11.7.15304'
  39. pod 'CocoaHTTPServer'
  40. # 本地
  41. pod 'KSToolsLibrary', :path => '/Users/wangzhi/WorkSpace/TargetModule/my-local-repo/KSToolsLibrary'
  42. pod 'KSCloudAccompanyLibrary', :path => '/Users/wangzhi/WorkSpace/TargetModule/my-local-repo/KSCloudAccompanyLibrary'
  43. # Pods for KulexiuForTeacher b
  44. end
  45. #Pods config
  46. #Fix Xcode14 Bundle target error
  47. post_install do |installer|
  48. installer.generated_projects.each do |project|
  49. project.targets.each do |target|
  50. target.build_configurations.each do |config|
  51. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
  52. # 查找 Debug 的 xcconfig 文件
  53. if ['DEV', 'TEST'].include? config.name
  54. # Define DEBUG macro for DEV and TEST configurations
  55. config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= ['$(inherited)', 'DEBUG=1']
  56. # 获取对应的 Debug 配置
  57. debug_config = target.build_configurations.find { |conf| conf.name == 'Debug' }
  58. # 使用相同的 xcconfig 文件
  59. config.base_configuration_reference = debug_config.base_configuration_reference
  60. end
  61. end
  62. end
  63. end
  64. end