-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathZDCChat.podspec
47 lines (40 loc) · 1.95 KB
/
ZDCChat.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 = "ZDCChat"
s.version = "1.4.7"
s.summary = "Zendesk Chat SDK 1.4.7"
s.homepage = "https://github.com/zendesk/zendesk_sdk_chat_ios"
s.license = {
:type => 'Copyright',
:text => <<-LICENSE
ZDCChat
Created by Zendesk on 25/03/2015.
Copyright (c) 2017 Zendesk. All rights reserved.
By downloading or using the Zendesk Mobile SDK, You agree to the Zendesk Master
Subscription Agreement https://www.zendesk.com/company/customers-partners/#master-subscription-agreement and Application Developer and API License
Agreement https://www.zendesk.com/company/customers-partners/#application-developer-api-license-agreement and
acknowledge that such terms govern Your use of and access to the Mobile SDK.
LICENSE
}
s.author = 'Zendesk'
s.source = { :git => "https://github.com/zendesk/zendesk_sdk_chat_ios.git", :tag => s.version.to_s }
s.platform = :ios, '9.3'
s.requires_arc = true
s.default_subspecs = 'UI', 'API', 'Localization'
s.subspec 'UI' do |ss|
ss.ios.vendored_frameworks = 'ZDCChat.framework'
ss.preserve_paths = 'ZDCChat.framework'
ss.frameworks = 'MobileCoreServices', 'SystemConfiguration', 'AVFoundation', 'AssetsLibrary'
ss.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '$(inherited)', 'CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES' => 'YES' }
ss.resources = ["ZDCChat.bundle"]
ss.dependency 'ZDCChat/API'
end
s.subspec 'Localization' do |ss|
ss.resources = ["ZDCChatStrings.bundle"]
end
s.subspec 'API' do |ss|
ss.frameworks = 'SystemConfiguration'
ss.ios.vendored_frameworks = 'ZDCChatAPI.framework'
ss.preserve_paths = 'ZDCChatAPI.framework'
ss.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '$(inherited)', 'CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES' => 'YES' }
end
end