-
Notifications
You must be signed in to change notification settings - Fork 17
/
SKYKitChat.podspec
46 lines (37 loc) · 1.56 KB
/
SKYKitChat.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
Pod::Spec.new do |s|
s.name = 'SKYKitChat'
s.version = '1.7.0'
s.summary = 'Chat extension for SKYKit'
s.description = <<-DESC
This is the client library for the Skygear Chat extension.
DESC
s.homepage = 'https://github.com/SkygearIO/chat-SDK-iOS'
s.license = 'Apache License, Version 2.0'
s.author = { "Oursky Ltd." => "[email protected]" }
s.source = { :git => 'https://github.com/SkygearIO/chat-SDK-iOS.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.2'
s.default_subspecs = 'Core'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '4.0' }
s.subspec 'Core' do |sp|
sp.source_files = 'SKYKitChat/Classes/Core/**/*'
sp.resource_bundles = {
'SKYKitChatUI' => [
'SKYKitChat/Assets/*.xcassets'
]
}
sp.dependency 'SKYKit/Core', '~> 1.7'
sp.dependency 'Realm', '~> 3.0.1'
end
s.subspec 'UI' do |sp|
sp.source_files = 'SKYKitChat/Classes/UI/**/*'
sp.dependency 'SKYKitChat/Core'
sp.dependency 'SKYKit/Core', '~> 1.7'
sp.dependency 'SVProgressHUD', '~> 2.2'
sp.dependency 'ALCameraViewController', '~> 3.0'
sp.dependency 'LruCache', '~> 0.1'
sp.dependency 'CTAssetsPickerController', '~> 3.3.1'
sp.dependency 'SKPhotoBrowser', '~> 5.0.5'
sp.dependency 'JSQSystemSoundPlayer', '~> 2.0.1'
sp.dependency 'JSQMessagesViewController-Skygear', '7.3.5.4'
end
end