-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathKoreBotSDK.podspec
More file actions
executable file
·28 lines (26 loc) · 1.12 KB
/
KoreBotSDK.podspec
File metadata and controls
executable file
·28 lines (26 loc) · 1.12 KB
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
Pod::Spec.new do |s|
s.name = 'KoreBotSDK'
s.version = '4.0.3'
s.license = {:type => 'MIT', :file => 'LICENSE' }
s.summary = 'KoreBotSDK lets a user interact with Kore bots'
s.homepage = 'https://kore.ai'
s.author = {'Srinivas Vasadi' => 'srinivas.vasadi@kore.com'}
s.source = {:git => 'https://github.com/Koredotcom/iOS-kore-sdk.git', :tag => s.version, :submodules => true }
s.requires_arc = true
s.public_header_files = 'KoreBotSDK/KoreBotSDK.h'
s.source_files = 'KoreBotSDK/KoreBotSDK.h'
s.swift_version = '4.2'
s.ios.deployment_target = '12.0'
s.source_files = 'Sources/**/*.{h,m,swift}'
s.resources = ['Sources/**/*.{xcdatamodeld}', 'Sources/**/*.{xcassets}','Sources/**/*.xib','Sources/Widgets/**/**/*.xib','Sources/**/*.json','Sources/**/*.lproj']
s.dependency 'Alamofire'
s.dependency 'AlamofireImage'
s.dependency 'Starscream'
s.dependency 'ObjectMapper'
s.dependency 'GhostTypewriter'
s.dependency 'DGCharts'
s.dependency 'FMPhotoPicker'
s.dependency 'SwiftUTI'
s.dependency 'Emoji-swift'
s.ios.frameworks = 'SystemConfiguration'
end