Files
e-party-iOS/Podfile
edwinQQQ 3ec1b1302f feat: 更新iOS和Podfile的部署目标以支持新版本
- 将iOS平台版本更新至17,确保与最新的开发环境兼容。
- 更新Podfile中的iOS部署目标至17.0,确保依赖项与新版本兼容。
- 修改Podfile.lock以反映新的依赖项版本,确保项目一致性。
- 在多个视图中重构代码,优化状态管理和视图逻辑,提升用户体验。
2025-07-29 15:59:09 +08:00

44 lines
1.3 KiB
Ruby

# Uncomment the next line to define a global platform for your project
platform :ios, '17.0'
target 'yana' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for yana
# # IM 即时通讯
# pod 'NIMSDK_LITE'
# # 基础库
# pod 'NEChatKit', '10.6.1'
# pod 'NEChatUIKit', '10.6.1' # 会话(聊天)组件
# pod 'NEContactUIKit', '10.6.1' # 通讯录组件
# pod 'NELocalConversationUIKit', '10.6.1' # 本地会话列表组件。
# Networks
pod 'Alamofire'
# 腾讯云 COS 精简版 SDK
pod 'QCloudCOSXML'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'YES'
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '17.0'
end
end
# 新增冲突处理脚本
installer.pods_project.targets.each do |target|
target.build_phases.each do |phase|
if phase.respond_to?(:name) && phase.name == 'Embed Frameworks'
phase.input_paths.delete_if { |path|
path.end_with?('nimsdk.xcframework', 'nimsocketrocket.xcframework', 'nimquic.xcframework', 'nimnos.xcframework')
}
end
end
end
end