-
Notifications
You must be signed in to change notification settings - Fork 274
/
ChatK!t.podspec
executable file
·47 lines (38 loc) · 1.35 KB
/
ChatK!t.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
35
36
37
38
39
40
41
42
43
44
45
46
47
Pod::Spec.new do |s|
s.name = "ChatK!t"
s.version = "5.2.2"
s.summary = "ChatK!t - Message View"
s.homepage = "https://chatk.it"
s.license = { :type => 'Apache 2.0' }
s.author = { "Ben Smiley" => "[email protected]" }
s.source = { :git => "https://github.com/chat-sdk/chat-sdk-ios.git", :tag => s.version.to_s }
s.module_name = 'ChatKit'
s.platform = :ios, '13.0'
s.requires_arc = true
s.swift_version = "5.0"
s.default_subspec = 'ChatK!t'
# s.static_framework = true
s.subspec 'ChatK!t' do |s|
s.source_files = "ChatK!t/Core/**/*.{h,m,swift}"
s.resources = 'ChatK!t/Core/**/*.{xib,xcassets,strings}'
s.dependency 'ChatSDKKeepLayout'
s.dependency 'NextGrowingTextView', '1.6.1'
s.dependency 'CollectionKit'
s.dependency 'FFCircularProgressView'
s.dependency 'MZDownloadManager'
s.dependency 'FLAnimatedImage'
s.dependency 'GSImageViewerController'
s.dependency 'RxSwift', '~>6.2.0'
s.dependency 'DateTools'
s.dependency 'SDWebImage'
s.dependency 'ZLImageEditor'
# s.dependency 'WPMediaPicker'
# s.dependency 'YPImagePicker'
s.dependency 'TLPhotoPicker'
end
s.subspec 'ChatSDK' do |s|
s.source_files = ['ChatK!t/ChatSDK/**/*']
s.dependency 'ChatSDK/UI'
s.dependency 'ChatK!t/ChatK!t'
end
end