-
Notifications
You must be signed in to change notification settings - Fork 415
/
Podfile
54 lines (42 loc) · 1.96 KB
/
Podfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Uncomment the next line to define a global platform for your project
platform :ios, '12.0'
source 'https://github.com/CocoaPods/Specs.git'
target 'app' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# 基础库
pod 'NEChatKit', '10.5.0'
# UI 组件,依次为通讯录组件、会话列表组件、会话(聊天)组件、群相关设置组件
pod 'NEChatUIKit', '10.5.0'
pod 'NEContactUIKit', '10.5.0'
pod 'NEConversationUIKit', '10.5.0'
pod 'NETeamUIKit', '10.5.0'
# 扩展库 - 地理位置组件
pod 'NEMapKit', '10.5.0'
# 扩展库 - AI 划词搜索
pod 'NEAISearchKit', '1.0.4'
# 扩展库 - 呼叫组件
pod 'NERtcCallKit/NOS_Special', '3.1.0'
pod 'NERtcCallUIKit/NOS_Special', '3.1.0'
# 扩展库,依次为 RTC 音视频基础组件、RTC 音视频神经网络组件(使用背景虚化功能需要集成)、RTC 音视频背景分割组件(使用背景虚化功能需要集成)
pod 'NERtcSDK/RtcBasic', '5.6.33'
pod 'NERtcSDK/Nenn'
pod 'NERtcSDK/Segment'
# 如果需要查看UI部分源码请注释掉以上在线依赖,打开下面的本地依赖
# pod 'NEContactUIKit', :path => 'NEContactUIKit/NEContactUIKit.podspec'
# pod 'NEConversationUIKit', :path => 'NEConversationUIKit/NEConversationUIKit.podspec'
# pod 'NETeamUIKit', :path => 'NETeamUIKit/NETeamUIKit.podspec'
# pod 'NEChatUIKit', :path => 'NEChatUIKit/NEChatUIKit.podspec'
# pod 'NEMapKit', :path => 'NEMapKit/NEMapKit.podspec'
# pod 'NEAISearchKit', :path => 'NEAISearchKit/NEAISearchKit.podspec'
# pod 'NERtcCallUIKit', :path => 'NERtcCallUIKit/NERtcCallUIKit.podspec'
end
# ⚠️如果pod依赖报错,可打开以下注释
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'] = '12.0'
end
end
end