-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathNuguAgents.podspec
53 lines (43 loc) · 1.77 KB
/
NuguAgents.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
48
49
50
51
52
53
Pod::Spec.new do |s|
s.name = 'NuguAgents'
s.version = '1.10.1'
s.license = 'Apache License, Version 2.0'
s.summary = 'Nugu Agents'
s.description = <<-DESC
Default Agent Implementations for Nugu service
DESC
s.homepage = 'https://github.com/nugu-developers/nugu-ios'
s.author = { 'SK Telecom Co., Ltd.' => '[email protected]' }
s.source = { :git => 'https://github.com/nugu-developers/nugu-ios.git', :tag => s.version.to_s }
s.resource_bundles = {"NuguUtils" => ["NuguUtils/PrivacyInfo.xcprivacy"]}
s.documentation_url = 'https://developers.nugu.co.kr'
s.ios.deployment_target = '12.0'
s.swift_version = '5'
s.source_files = 'NuguAgents/Sources/**/*'
s.dependency 'NuguCore', s.version.to_s
s.dependency 'NuguUtils', s.version.to_s
s.dependency 'SilverTray', s.version.to_s
s.dependency 'NattyLog', '~> 1'
s.ios.dependency 'JadeMarble', s.version.to_s
s.xcconfig = {
'OTHER_SWIFT_FLAGS' => '-DDEPLOY_OTHER_PACKAGE_MANAGER'
}
# s.subspec 'iOS_Specific' do |iOS|
# iOS.subspec 'ASR' do |asr|
# asr.ios.source_files = 'NuguAgents/Sources/CapabilityAgents/AutomaticSpeechRecognition/**/*'
# asr.ios.dependency 'JadeMarble', '~> 0'
# asr.ios.dependency 'NuguCore', '~> 0'
# asr.ios.dependency 'NattyLog', '~> 1'
# end
# end
# s.subspec 'Common' do |common|
# common.source_files = 'NuguAgents/Sources/**/*'
# common.exclude_files = 'NuguAgents/Sources/CapabilityAgents/AutomaticSpeechRecognition/**/*'
# common.dependency 'NuguCore', '~> 0'
# common.dependency 'NattyLog', '~> 1'
# common.dependency 'SilverTray', '~> 1'
# #common.tvos.deployment_target = '13.0'
# #common.watchos.deployment_target = '6.0'
# #common.macos.deployment_target = '10.15.0'
# end
end