forked from netease-kit/nim-uikit-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NIMKit.podspec
34 lines (30 loc) · 1.18 KB
/
NIMKit.podspec
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
Pod::Spec.new do |s|
s.name = 'NIMKit'
s.version = '2.0.0'
s.summary = 'Netease IM UI Kit'
s.homepage = 'http://netease.im'
s.license = { :'type' => 'Copyright', :'text' => ' Copyright 2017 Netease '}
s.authors = 'Netease IM Team'
s.source = { :git => 'https://github.com/netease-im/NIM_iOS_UIKit.git', :tag => '2.0.0'}
s.platform = :ios, '8.0'
s.frameworks = 'CoreText', 'SystemConfiguration', 'AVFoundation', 'CoreTelephony', 'AudioToolbox', 'CoreMedia' , 'VideoToolbox'
s.libraries = 'sqlite3.0', 'z', 'c++'
s.subspec 'Full' do |cs|
cs.source_files = 'NIMKit/NIMKit/**/*.{h,m}'
cs.dependency 'NIMKit/Core'
cs.dependency 'NIMSDK', '~> 4.3.0'
end
s.subspec 'Lite' do |cs|
cs.source_files = 'NIMKit/NIMKit/**/*.{h,m}'
cs.dependency 'NIMKit/Core'
cs.dependency 'NIMSDK_LITE', '~> 4.3.0'
end
s.subspec 'Core' do |os|
os.resources = 'NIMKit/Resources/*.*'
os.dependency 'SDWebImage', '~> 4.0.0'
os.dependency 'Toast', '~> 3.0'
os.dependency 'M80AttributedLabel', '~> 1.6.3'
os.dependency 'TZImagePickerController', '~> 1.9.0'
end
s.default_subspec = 'Lite'
end