forked from netease-kit/nim-uikit-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
49 lines (40 loc) · 1.45 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
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'app' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
#登录组件
pod 'YXLogin', '1.0.0'
#可选UI库
pod 'NEContactUIKit', '9.2.8'
pod 'NEQChatUIKit', '9.2.8'
pod 'NEConversationUIKit', '9.2.8'
pod 'NEChatUIKit', '9.2.8'
pod 'NETeamUIKit', '9.2.8'
#可选Kit库(和UIKit对应)
pod 'NEContactKit', '9.2.8'
pod 'NEQChatKit', '9.2.8'
pod 'NEConversationKit', '9.2.8'
pod 'NEChatKit', '9.2.8'
pod 'NETeamKit', '9.2.8'
#基础kit库
pod 'NECommonUIKit', '9.2.8'
pod 'NECommonKit', '9.2.8'
pod 'NECoreIMKit', '9.2.8'
pod 'NECoreKit', '9.2.8'
# 如果需要查看UI部分源码请注释掉以上在线依赖,打开下面的本地依赖
# pod 'NEKitQChatUI', :path => 'NEQChatUIKit/NEKitQChatUI.podspec'
# pod 'NEKitContactUI', :path => 'NEContactUIKit/NEKitContactUI.podspec'
# pod 'NEKitConversationUI', :path => 'NEConversationUIKit/NEKitConversationUI.podspec'
# pod 'NEKitTeamUI', :path => 'NETeamUIKit/NEKitTeamUI.podspec'
# pod 'NEKitChatUI', :path => 'NEChatUIKit/NEKitChatUI.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'
# end
# end
#end