diff --git a/Cartfile b/Cartfile
index 6e62075a7..646aa5c8f 100644
--- a/Cartfile
+++ b/Cartfile
@@ -1,3 +1,3 @@
github "ReactiveX/RxSwift" ~> 6.0
github "nugu-developers/natty-log-ios" ~> 1.0
-github "airbnb/lottie-ios" ~> 3.0
+github "airbnb/lottie-ios" ~> 4.0
diff --git a/Cartfile.resolved b/Cartfile.resolved
index 6848f7d5b..64ca04d3c 100644
--- a/Cartfile.resolved
+++ b/Cartfile.resolved
@@ -1,3 +1,3 @@
github "ReactiveX/RxSwift" "6.6.0"
-github "airbnb/lottie-ios" "3.5.0"
+github "airbnb/lottie-ios" "4.4.1"
github "nugu-developers/natty-log-ios" "1.2.3"
diff --git a/JadeMarble.podspec b/JadeMarble.podspec
index 1f88f1351..ca8cbf2b0 100644
--- a/JadeMarble.podspec
+++ b/JadeMarble.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'JadeMarble'
- s.version = '1.9.4'
+ s.version = '1.10.0'
s.license = 'Apache License, Version 2.0'
s.summary = 'End Point Detector for NUGU ASR'
s.homepage = 'https://github.com/nugu-developers/nugu-ios'
diff --git a/KeenSense.podspec b/KeenSense.podspec
index 4f9e75f81..443b4f6a1 100644
--- a/KeenSense.podspec
+++ b/KeenSense.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'KeenSense'
- s.version = '1.9.4'
+ s.version = '1.10.0'
s.license = 'Apache License, Version 2.0'
s.summary = 'Key Word Detector for NUGU'
s.homepage = 'https://github.com/nugu-developers/nugu-ios'
diff --git a/NuguAgents.podspec b/NuguAgents.podspec
index 30aeb97ad..e57b5a0b4 100644
--- a/NuguAgents.podspec
+++ b/NuguAgents.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'NuguAgents'
- s.version = '1.9.4'
+ s.version = '1.10.0'
s.license = 'Apache License, Version 2.0'
s.summary = 'Nugu Agents'
s.description = <<-DESC
@@ -10,6 +10,7 @@ Default Agent Implementations for Nugu service
s.homepage = 'https://github.com/nugu-developers/nugu-ios'
s.author = { 'SK Telecom Co., Ltd.' => 'nugu_dev_sdk@sk.com' }
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'
diff --git a/NuguAgents/PrivacyInfo.xcprivacy b/NuguAgents/PrivacyInfo.xcprivacy
new file mode 100644
index 000000000..d12e78530
--- /dev/null
+++ b/NuguAgents/PrivacyInfo.xcprivacy
@@ -0,0 +1,31 @@
+
+
+
+
+ NSPrivacyTracking
+
+ NSPrivacyCollectedDataTypes
+
+ NSPrivacyTrackingDomains
+
+ NSPrivacyAccessedAPITypes
+
+
+ NSPrivacyAccessedAPITypeReasons
+
+ 35F9.1
+
+ NSPrivacyAccessedAPIType
+
+
+
+ NSPrivacyAccessedAPIType
+ NSPrivacyAccessedAPICategoryUserDefaults
+ NSPrivacyAccessedAPITypeReasons
+
+ CA92.1
+
+
+
+
+
diff --git a/NuguAgents/Sources/CapabilityAgents/AutomaticSpeechRecognition/ASRAgent+Event.swift b/NuguAgents/Sources/CapabilityAgents/AutomaticSpeechRecognition/ASRAgent+Event.swift
index 98e2a90df..46a158fba 100644
--- a/NuguAgents/Sources/CapabilityAgents/AutomaticSpeechRecognition/ASRAgent+Event.swift
+++ b/NuguAgents/Sources/CapabilityAgents/AutomaticSpeechRecognition/ASRAgent+Event.swift
@@ -52,7 +52,7 @@ extension ASRAgent.Event: Eventable {
var payload: [String: AnyHashable] {
var payload: [String: AnyHashable?]
switch typeInfo {
- case .recognize(let initiator, let options, let service):
+ case let .recognize(initiator, options, service):
payload = [
"codec": "SPEEX",
"language": "KOR",
@@ -62,14 +62,23 @@ extension ASRAgent.Event: Eventable {
"domainTypes": dialogAttributes?["domainTypes"],
"asrContext": dialogAttributes?["asrContext"],
"service": service,
- "timeout": [
- "listen": options.timeout.truncatedMilliSeconds,
- "maxSpeech": options.maxDuration.truncatedMilliSeconds,
- "response": 10000
- ],
"requestType": options.requestType
]
+ if options.endPointing == .client {
+ payload["epd"] = [
+ "timeoutMilliseconds": options.timeout.truncatedMilliSeconds,
+ "silenceIntervalInMilliseconds": options.pauseLength.truncatedMilliSeconds,
+ "maxSpeechDurationMilliseconds": options.maxDuration.truncatedMilliSeconds,
+ ]
+ } else {
+ payload["timeout"] = [
+ "listen": options.timeout.truncatedMilliSeconds,
+ "maxSpeech": options.maxDuration.truncatedMilliSeconds,
+ "response": 10000 // default value
+ ]
+ }
+
if case let .wakeUpWord(keyword, _, start, end, detection) = initiator {
var wakeup: [String: AnyHashable?] = ["word": keyword]
if options.endPointing == .server {
diff --git a/NuguAgents/Sources/CapabilityAgents/AutomaticSpeechRecognition/ASRAgent.swift b/NuguAgents/Sources/CapabilityAgents/AutomaticSpeechRecognition/ASRAgent.swift
index 0dce37256..35711a0c1 100644
--- a/NuguAgents/Sources/CapabilityAgents/AutomaticSpeechRecognition/ASRAgent.swift
+++ b/NuguAgents/Sources/CapabilityAgents/AutomaticSpeechRecognition/ASRAgent.swift
@@ -29,7 +29,7 @@ import RxSwift
public final class ASRAgent: ASRAgentProtocol {
// CapabilityAgentable
- public var capabilityAgentProperty: CapabilityAgentProperty = CapabilityAgentProperty(category: .automaticSpeechRecognition, version: "1.8")
+ public var capabilityAgentProperty: CapabilityAgentProperty = CapabilityAgentProperty(category: .automaticSpeechRecognition, version: "1.9")
private let playSyncProperty = PlaySyncProperty(layerType: .asr, contextType: .sound)
public weak var delegate: ASRAgentDelegate?
diff --git a/NuguClientKit.podspec b/NuguClientKit.podspec
index 51a8a41cd..144b1b19c 100644
--- a/NuguClientKit.podspec
+++ b/NuguClientKit.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'NuguClientKit'
- s.version = '1.9.4'
+ s.version = '1.10.0'
s.license = 'Apache License, Version 2.0'
s.summary = 'Nugu Client Kit'
s.description = <<-DESC
@@ -10,6 +10,7 @@ Default Instances for Nugu service
s.homepage = 'https://github.com/nugu-developers/nugu-ios'
s.author = { 'SK Telecom Co., Ltd.' => 'nugu_dev_sdk@sk.com' }
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'
diff --git a/NuguClientKit/PrivacyInfo.xcprivacy b/NuguClientKit/PrivacyInfo.xcprivacy
new file mode 100644
index 000000000..78df728b0
--- /dev/null
+++ b/NuguClientKit/PrivacyInfo.xcprivacy
@@ -0,0 +1,23 @@
+
+
+
+
+ NSPrivacyTracking
+
+ NSPrivacyCollectedDataTypes
+
+ NSPrivacyTrackingDomains
+
+ NSPrivacyAccessedAPITypes
+
+
+ NSPrivacyAccessedAPITypeReasons
+
+ 35F9.1
+
+ NSPrivacyAccessedAPIType
+ NSPrivacyAccessedAPICategorySystemBootTime
+
+
+
+
diff --git a/NuguCore.podspec b/NuguCore.podspec
index 99e3112fb..15060dd19 100644
--- a/NuguCore.podspec
+++ b/NuguCore.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'NuguCore'
- s.version = '1.9.4'
+ s.version = '1.10.0'
s.license = 'Apache License, Version 2.0'
s.summary = 'Nugu'
s.description = <<-DESC
@@ -10,6 +10,7 @@ Nugu framework for AI Service
s.homepage = 'https://github.com/nugu-developers/nugu-ios'
s.author = { 'SK Telecom Co., Ltd.' => 'nugu_dev_sdk@sk.com' }
s.source = { :git => 'https://github.com/nugu-developers/nugu-ios.git', :tag => s.version }
+ s.resource_bundles = {"NuguUtils" => ["NuguUtils/PrivacyInfo.xcprivacy"]}
s.documentation_url = 'https://developers.nugu.co.kr'
s.ios.deployment_target = '12.0'
diff --git a/NuguCore/PrivacyInfo.xcprivacy b/NuguCore/PrivacyInfo.xcprivacy
new file mode 100644
index 000000000..36caba81e
--- /dev/null
+++ b/NuguCore/PrivacyInfo.xcprivacy
@@ -0,0 +1,31 @@
+
+
+
+
+ NSPrivacyTracking
+
+ NSPrivacyCollectedDataTypes
+
+ NSPrivacyTrackingDomains
+
+ NSPrivacyAccessedAPITypes
+
+
+ NSPrivacyAccessedAPIType
+ NSPrivacyAccessedAPICategoryFileTimestamp
+ NSPrivacyAccessedAPITypeReasons
+
+ C617.1
+
+
+
+ NSPrivacyAccessedAPIType
+ NSPrivacyAccessedAPICategoryUserDefaults
+ NSPrivacyAccessedAPITypeReasons
+
+ CA92.1
+
+
+
+
+
diff --git a/NuguCore/Sources/NuguCore.swift b/NuguCore/Sources/NuguCore.swift
index cdf934ed1..5e2389250 100644
--- a/NuguCore/Sources/NuguCore.swift
+++ b/NuguCore/Sources/NuguCore.swift
@@ -56,5 +56,5 @@ public var logLevel: NattyLog.LogLevel {
public let nuguSDKVersion = (Bundle(for: AuthorizationStore.self).object(forInfoDictionaryKey: "CFBundleShortVersionString") as? String ?? "0")
#else
// FIXME: 현재는 SPM에서 버전을 가져올 방법이 없다.
-public let nuguSDKVersion = "1.9.4"
+public let nuguSDKVersion = "1.10.0"
#endif
diff --git a/NuguLoginKit.podspec b/NuguLoginKit.podspec
index 3d213a422..959166f62 100644
--- a/NuguLoginKit.podspec
+++ b/NuguLoginKit.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'NuguLoginKit'
- s.version = '1.9.4'
+ s.version = '1.10.0'
s.license = 'Apache License, Version 2.0'
s.summary = 'Supported login for Nugu Service'
s.description = <<-DESC
diff --git a/NuguObjcUtils.podspec b/NuguObjcUtils.podspec
index 92acabd3f..7a55fdf3d 100644
--- a/NuguObjcUtils.podspec
+++ b/NuguObjcUtils.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'NuguObjcUtils'
- s.version = '1.9.4'
+ s.version = '1.10.0'
s.license = 'Apache License, Version 2.0'
s.summary = 'Nugu Utils'
s.description = <<-DESC
diff --git a/NuguServiceKit.podspec b/NuguServiceKit.podspec
index b67926b5f..c53fd6f3c 100644
--- a/NuguServiceKit.podspec
+++ b/NuguServiceKit.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'NuguServiceKit'
- s.version = '1.9.4'
+ s.version = '1.10.0'
s.license = 'Apache License, Version 2.0'
s.summary = 'Customized Webview for Nugu Service'
s.description = <<-DESC
diff --git a/NuguUIKit.podspec b/NuguUIKit.podspec
index 0caab5ffa..b2f6d6184 100644
--- a/NuguUIKit.podspec
+++ b/NuguUIKit.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'NuguUIKit'
- s.version = '1.9.4'
+ s.version = '1.10.0'
s.license = 'Apache License, Version 2.0'
s.summary = 'UI Set of Nugu Service'
s.description = <<-DESC
diff --git a/NuguUtils.podspec b/NuguUtils.podspec
index 7849cce51..fc0052ebc 100644
--- a/NuguUtils.podspec
+++ b/NuguUtils.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'NuguUtils'
- s.version = '1.9.4'
+ s.version = '1.10.0'
s.license = 'Apache License, Version 2.0'
s.summary = 'Supported login for Nugu Service'
s.description = <<-DESC
@@ -10,6 +10,7 @@ Framework for login using OAuth 2.0
s.homepage = 'https://github.com/nugu-developers/nugu-ios'
s.author = { 'SK Telecom Co., Ltd.' => 'nugu_dev_sdk@sk.com' }
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'
diff --git a/NuguUtils/PrivacyInfo.xcprivacy b/NuguUtils/PrivacyInfo.xcprivacy
new file mode 100644
index 000000000..78df728b0
--- /dev/null
+++ b/NuguUtils/PrivacyInfo.xcprivacy
@@ -0,0 +1,23 @@
+
+
+
+
+ NSPrivacyTracking
+
+ NSPrivacyCollectedDataTypes
+
+ NSPrivacyTrackingDomains
+
+ NSPrivacyAccessedAPITypes
+
+
+ NSPrivacyAccessedAPITypeReasons
+
+ 35F9.1
+
+ NSPrivacyAccessedAPIType
+ NSPrivacyAccessedAPICategorySystemBootTime
+
+
+
+
diff --git a/OpusSDK.podspec b/OpusSDK.podspec
index 9441ee3e2..dee834817 100644
--- a/OpusSDK.podspec
+++ b/OpusSDK.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'OpusSDK'
- s.version = '1.9.4'
+ s.version = '1.10.0'
s.license = 'Apache License, Version 2.0'
s.summary = 'Opus codec wrapper'
s.description = <<-DESC
diff --git a/Package.resolved b/Package.resolved
index e89cf6936..3e1cbc4aa 100644
--- a/Package.resolved
+++ b/Package.resolved
@@ -6,8 +6,8 @@
"repositoryURL": "https://github.com/airbnb/lottie-ios",
"state": {
"branch": null,
- "revision": "b4bd0604ded9574807f41b4004b57dd1226a30a4",
- "version": "3.5.0"
+ "revision": "7fe8b6f697ae7db4bf0df270119592cb5d502848",
+ "version": "4.4.1"
}
},
{
diff --git a/Package.swift b/Package.swift
index 886d84a7f..8760822e8 100644
--- a/Package.swift
+++ b/Package.swift
@@ -22,7 +22,7 @@ let package = Package(
dependencies: [
.package(name: "RxSwift", url: "https://github.com/ReactiveX/RxSwift", from: "6.0.0"),
.package(name: "NattyLog", url: "https://github.com/nugu-developers/natty-log-ios", from: "1.2.2"),
- .package(name: "Lottie", url: "https://github.com/airbnb/lottie-ios", from: "3.0.0")
+ .package(name: "Lottie", url: "https://github.com/airbnb/lottie-ios", from: "4.0.0")
],
targets: [
.target(
diff --git a/SilverTray.podspec b/SilverTray.podspec
index 0cfebc40f..d0d313246 100644
--- a/SilverTray.podspec
+++ b/SilverTray.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'SilverTray'
- s.version = '1.9.4'
+ s.version = '1.10.0'
s.license = 'Apache License, Version 2.0'
s.summary = 'Data chunk player'
s.description = <<-DESC
diff --git a/TycheSDK.podspec b/TycheSDK.podspec
index 4b4a27018..ba362f3d8 100644
--- a/TycheSDK.podspec
+++ b/TycheSDK.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'TycheSDK'
- s.version = '1.9.4'
+ s.version = '1.10.0'
s.license = 'Apache License, Version 2.0'
s.summary = 'Tyche wrapper'
s.description = <<-DESC
diff --git a/nugu-ios.xcodeproj/project.pbxproj b/nugu-ios.xcodeproj/project.pbxproj
index f0ea6d642..dc20e48b7 100644
--- a/nugu-ios.xcodeproj/project.pbxproj
+++ b/nugu-ios.xcodeproj/project.pbxproj
@@ -529,6 +529,10 @@
E649868A28337649001AD733 /* ControlCenterManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = E649868928337649001AD733 /* ControlCenterManager.swift */; };
E6BE047C2A0BA1A400AE29E3 /* Image+Event.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6BE047B2A0BA1A400AE29E3 /* Image+Event.swift */; };
E6BE047E2A0BA1BD00AE29E3 /* ImageAgent.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6BE047D2A0BA1BD00AE29E3 /* ImageAgent.swift */; };
+ E6D10A982B9FD2FE0004DE40 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = E6D10A972B9FD2FE0004DE40 /* PrivacyInfo.xcprivacy */; };
+ E6D10A9A2B9FD9C20004DE40 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = E6D10A992B9FD9C20004DE40 /* PrivacyInfo.xcprivacy */; };
+ E6D10A9C2B9FD9E80004DE40 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = E6D10A9B2B9FD9E80004DE40 /* PrivacyInfo.xcprivacy */; };
+ E6D10A9E2B9FDBB10004DE40 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = E6D10A9D2B9FDBB10004DE40 /* PrivacyInfo.xcprivacy */; };
E6F3DCBD2B4CB9D800298A20 /* ASRAgentDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6F3DCBC2B4CB9D800298A20 /* ASRAgentDelegate.swift */; };
E6FBA02B2A1379C500AF8B05 /* MessengerAgentProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6FBA02A2A1379C400AF8B05 /* MessengerAgentProtocol.swift */; };
E6FBA02D2A137A9700AF8B05 /* ImageAgentProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6FBA02C2A137A9700AF8B05 /* ImageAgentProtocol.swift */; };
@@ -1332,6 +1336,10 @@
E649868928337649001AD733 /* ControlCenterManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ControlCenterManager.swift; sourceTree = ""; };
E6BE047B2A0BA1A400AE29E3 /* Image+Event.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Image+Event.swift"; sourceTree = ""; };
E6BE047D2A0BA1BD00AE29E3 /* ImageAgent.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ImageAgent.swift; sourceTree = ""; };
+ E6D10A972B9FD2FE0004DE40 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = PrivacyInfo.xcprivacy; sourceTree = ""; };
+ E6D10A992B9FD9C20004DE40 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = PrivacyInfo.xcprivacy; sourceTree = ""; };
+ E6D10A9B2B9FD9E80004DE40 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = PrivacyInfo.xcprivacy; sourceTree = ""; };
+ E6D10A9D2B9FDBB10004DE40 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = PrivacyInfo.xcprivacy; sourceTree = ""; };
E6F3DCBC2B4CB9D800298A20 /* ASRAgentDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ASRAgentDelegate.swift; sourceTree = ""; };
E6FBA02A2A1379C400AF8B05 /* MessengerAgentProtocol.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessengerAgentProtocol.swift; sourceTree = ""; };
E6FBA02C2A137A9700AF8B05 /* ImageAgentProtocol.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ImageAgentProtocol.swift; sourceTree = ""; };
@@ -1857,6 +1865,7 @@
1FFFF30B2375707000C9A177 /* Sources */,
1FFFEFFF23753F1800C9A177 /* NuguCore.h */,
1FFFF00023753F1800C9A177 /* Info.plist */,
+ E6D10A9D2B9FDBB10004DE40 /* PrivacyInfo.xcprivacy */,
);
path = NuguCore;
sourceTree = "";
@@ -1867,6 +1876,7 @@
1FFFF3D72375735E00C9A177 /* Sources */,
1FFFF00C23753F3100C9A177 /* NuguClientKit.h */,
1FFFF00D23753F3100C9A177 /* Info.plist */,
+ E6D10A992B9FD9C20004DE40 /* PrivacyInfo.xcprivacy */,
);
path = NuguClientKit;
sourceTree = "";
@@ -2561,6 +2571,7 @@
7314DF67255E3EDB004882BB /* Sources */,
7314DF49255E3EA2004882BB /* NuguUtils.h */,
7314DF4A255E3EA2004882BB /* Info.plist */,
+ E6D10A9B2B9FD9E80004DE40 /* PrivacyInfo.xcprivacy */,
);
path = NuguUtils;
sourceTree = "";
@@ -2598,6 +2609,7 @@
73152FA623E0411200F843C3 /* Sources */,
73152F9C23E0405900F843C3 /* NuguAgents.h */,
73152F9D23E0405900F843C3 /* Info.plist */,
+ E6D10A972B9FD2FE0004DE40 /* PrivacyInfo.xcprivacy */,
);
path = NuguAgents;
sourceTree = "";
@@ -3690,6 +3702,7 @@
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
+ E6D10A9E2B9FDBB10004DE40 /* PrivacyInfo.xcprivacy in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -3697,6 +3710,7 @@
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
+ E6D10A9A2B9FD9C20004DE40 /* PrivacyInfo.xcprivacy in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -3772,6 +3786,7 @@
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
+ E6D10A9C2B9FD9E80004DE40 /* PrivacyInfo.xcprivacy in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -3779,6 +3794,7 @@
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
+ E6D10A982B9FD2FE0004DE40 /* PrivacyInfo.xcprivacy in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -4795,7 +4811,7 @@
"@loader_path/Frameworks",
);
LIBRARY_SEARCH_PATHS = "$(inherited)";
- MARKETING_VERSION = 1.9.4;
+ MARKETING_VERSION = 1.10.0;
PRODUCT_BUNDLE_IDENTIFIER = com.sktelecom.romaine.NuguCore;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -4832,7 +4848,7 @@
"@loader_path/Frameworks",
);
LIBRARY_SEARCH_PATHS = "$(inherited)";
- MARKETING_VERSION = 1.9.4;
+ MARKETING_VERSION = 1.10.0;
PRODUCT_BUNDLE_IDENTIFIER = com.sktelecom.romaine.NuguCore;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -4865,7 +4881,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
- MARKETING_VERSION = 1.9.4;
+ MARKETING_VERSION = 1.10.0;
PRODUCT_BUNDLE_IDENTIFIER = com.sktelecom.romaine.NuguClientKit;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -4898,7 +4914,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
- MARKETING_VERSION = 1.9.4;
+ MARKETING_VERSION = 1.10.0;
PRODUCT_BUNDLE_IDENTIFIER = com.sktelecom.romaine.NuguClientKit;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -4931,7 +4947,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
- MARKETING_VERSION = 1.9.4;
+ MARKETING_VERSION = 1.10.0;
PRODUCT_BUNDLE_IDENTIFIER = com.sktelecom.romaine.NuguLoginKit;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -4964,7 +4980,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
- MARKETING_VERSION = 1.9.4;
+ MARKETING_VERSION = 1.10.0;
PRODUCT_BUNDLE_IDENTIFIER = com.sktelecom.romaine.NuguLoginKit;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -4997,7 +5013,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
- MARKETING_VERSION = 1.9.4;
+ MARKETING_VERSION = 1.10.0;
OTHER_SWIFT_FLAGS = "-DDEPLOY_OTHER_PACKAGE_MANAGER";
PRODUCT_BUNDLE_IDENTIFIER = com.sktelecom.romaine.NuguUIKit;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
@@ -5031,7 +5047,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
- MARKETING_VERSION = 1.9.4;
+ MARKETING_VERSION = 1.10.0;
OTHER_SWIFT_FLAGS = "-DDEPLOY_OTHER_PACKAGE_MANAGER";
PRODUCT_BUNDLE_IDENTIFIER = com.sktelecom.romaine.NuguUIKit;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
@@ -5066,7 +5082,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
- MARKETING_VERSION = 1.9.4;
+ MARKETING_VERSION = 1.10.0;
OTHER_LDFLAGS = (
"$(inherited)",
"-l\"c++\"",
@@ -5106,7 +5122,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
- MARKETING_VERSION = 1.9.4;
+ MARKETING_VERSION = 1.10.0;
OTHER_LDFLAGS = (
"$(inherited)",
"-l\"c++\"",
@@ -5145,7 +5161,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
- MARKETING_VERSION = 1.9.4;
+ MARKETING_VERSION = 1.10.0;
OTHER_LDFLAGS = (
"$(inherited)",
"-l\"c++\"",
@@ -5184,7 +5200,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
- MARKETING_VERSION = 1.9.4;
+ MARKETING_VERSION = 1.10.0;
OTHER_LDFLAGS = (
"$(inherited)",
"-l\"c++\"",
@@ -5223,7 +5239,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
- MARKETING_VERSION = 1.9.4;
+ MARKETING_VERSION = 1.10.0;
PRODUCT_BUNDLE_IDENTIFIER = com.sktelecom.romaine.SampleApp;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = NuguSampleAppDev;
@@ -5254,7 +5270,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
- MARKETING_VERSION = 1.9.4;
+ MARKETING_VERSION = 1.10.0;
PRODUCT_BUNDLE_IDENTIFIER = com.sktelecom.romaine.SampleApp;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = NuguSampleAppDev;
@@ -5414,7 +5430,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
- MARKETING_VERSION = 1.9.4;
+ MARKETING_VERSION = 1.10.0;
PRODUCT_BUNDLE_IDENTIFIER = com.sktelecom.romaine.NuguUtils;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -5447,7 +5463,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
- MARKETING_VERSION = 1.9.4;
+ MARKETING_VERSION = 1.10.0;
PRODUCT_BUNDLE_IDENTIFIER = com.sktelecom.romaine.NuguUtils;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -5480,7 +5496,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
- MARKETING_VERSION = 1.9.4;
+ MARKETING_VERSION = 1.10.0;
PRODUCT_BUNDLE_IDENTIFIER = com.sktelecom.romaine.NuguAgents;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
@@ -5512,7 +5528,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
- MARKETING_VERSION = 1.9.4;
+ MARKETING_VERSION = 1.10.0;
PRODUCT_BUNDLE_IDENTIFIER = com.sktelecom.romaine.NuguAgents;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
@@ -5542,7 +5558,7 @@
"@loader_path/Frameworks",
);
LIBRARY_SEARCH_PATHS = "";
- MARKETING_VERSION = 1.9.4;
+ MARKETING_VERSION = 1.10.0;
PRODUCT_BUNDLE_IDENTIFIER = com.sktelecom.romaine.TycheSDK;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
@@ -5570,7 +5586,7 @@
"@loader_path/Frameworks",
);
LIBRARY_SEARCH_PATHS = "";
- MARKETING_VERSION = 1.9.4;
+ MARKETING_VERSION = 1.10.0;
PRODUCT_BUNDLE_IDENTIFIER = com.sktelecom.romaine.TycheSDK;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
@@ -5596,7 +5612,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
- MARKETING_VERSION = 1.9.4;
+ MARKETING_VERSION = 1.10.0;
PRODUCT_BUNDLE_IDENTIFIER = com.sktelecom.romaine.OpusSDK;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
@@ -5622,7 +5638,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
- MARKETING_VERSION = 1.9.4;
+ MARKETING_VERSION = 1.10.0;
PRODUCT_BUNDLE_IDENTIFIER = com.sktelecom.romaine.OpusSDK;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
@@ -5649,7 +5665,7 @@
"@loader_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.15;
- MARKETING_VERSION = 1.9.4;
+ MARKETING_VERSION = 1.10.0;
PRODUCT_BUNDLE_IDENTIFIER = com.sktelecom.romaine.NuguObjcUtils;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
@@ -5678,7 +5694,7 @@
"@loader_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.15;
- MARKETING_VERSION = 1.9.4;
+ MARKETING_VERSION = 1.10.0;
PRODUCT_BUNDLE_IDENTIFIER = com.sktelecom.romaine.NuguObjcUtils;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
@@ -5710,7 +5726,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
- MARKETING_VERSION = 1.9.4;
+ MARKETING_VERSION = 1.10.0;
PRODUCT_BUNDLE_IDENTIFIER = com.sktelecom.romaine.SilverTray;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
@@ -5742,7 +5758,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
- MARKETING_VERSION = 1.9.4;
+ MARKETING_VERSION = 1.10.0;
PRODUCT_BUNDLE_IDENTIFIER = com.sktelecom.romaine.SilverTray;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
@@ -5775,7 +5791,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
- MARKETING_VERSION = 1.9.4;
+ MARKETING_VERSION = 1.10.0;
PRODUCT_BUNDLE_IDENTIFIER = com.sktelecom.romaine.NuguServiceKit;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -5810,7 +5826,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
- MARKETING_VERSION = 1.9.4;
+ MARKETING_VERSION = 1.10.0;
PRODUCT_BUNDLE_IDENTIFIER = com.sktelecom.romaine.NuguServiceKit;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
PROVISIONING_PROFILE_SPECIFIER = "";