From 60ef6b19ce380e92a81794883c7fc512206bff60 Mon Sep 17 00:00:00 2001 From: Park Seo Yeon Date: Sun, 26 Jan 2025 03:48:48 +0900 Subject: [PATCH 1/3] =?UTF-8?q?[Refactor]=20Bundle=20ID=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ProjectDescriptionHelpers/Project/Target+Templates.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TnT/Tuist/ProjectDescriptionHelpers/Project/Target+Templates.swift b/TnT/Tuist/ProjectDescriptionHelpers/Project/Target+Templates.swift index 99f1308..4be59b3 100644 --- a/TnT/Tuist/ProjectDescriptionHelpers/Project/Target+Templates.swift +++ b/TnT/Tuist/ProjectDescriptionHelpers/Project/Target+Templates.swift @@ -63,7 +63,7 @@ public extension Target { name: appName, destinations: destinations, product: .app, - bundleId: "\(organizationName).\(appName).\(appName)", + bundleId: "com.TnT.yapp25-app2team", deploymentTargets: deploymentTargets, infoPlist: .file(path: .relativeToRoot("Tuist/Config/Info.plist")), sources: ["Sources/**"], From 97a6fecac7927cc01a08b5ffb85ba04f9eb5bfda Mon Sep 17 00:00:00 2001 From: Park Seo Yeon Date: Sun, 26 Jan 2025 03:56:48 +0900 Subject: [PATCH 2/3] =?UTF-8?q?[Refactor]=20Configuartion=20=EC=A3=BC?= =?UTF-8?q?=EC=84=9D=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Configuration+Templates.swift | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/TnT/Tuist/ProjectDescriptionHelpers/Configuration/Configuration+Templates.swift b/TnT/Tuist/ProjectDescriptionHelpers/Configuration/Configuration+Templates.swift index 081b505..0fcc5b3 100644 --- a/TnT/Tuist/ProjectDescriptionHelpers/Configuration/Configuration+Templates.swift +++ b/TnT/Tuist/ProjectDescriptionHelpers/Configuration/Configuration+Templates.swift @@ -8,19 +8,19 @@ @preconcurrency import ProjectDescription public extension Configuration { -// static func defaultSettings() -> Settings { -// return Settings.settings( -// configurations: [ -// .debug(name: .debug, xcconfig: .relativeToRoot("Tuist/Config/Secrets.xcconfig")), -// .release(name: .release, xcconfig: .relativeToRoot("Tuist/Config/Secrets.xcconfig")), -// ], -// defaultSettings: DefaultSettings.recommended -// ) -// } - static func defaultSettings() -> Settings { - return Settings.settings() + return Settings.settings( + configurations: [ + .debug(name: .debug, xcconfig: .relativeToRoot("Tuist/Config/Secrets.xcconfig")), + .release(name: .release, xcconfig: .relativeToRoot("Tuist/Config/Secrets.xcconfig")), + ], + defaultSettings: DefaultSettings.recommended + ) } + +// static func defaultSettings() -> Settings { +// return Settings.settings() +// } } From 44355074523927e35649670e7794c62e2f4c443b Mon Sep 17 00:00:00 2001 From: Park Seo Yeon Date: Sun, 26 Jan 2025 04:08:39 +0900 Subject: [PATCH 3/3] =?UTF-8?q?[Refactor]=20=EC=9D=98=EC=A1=B4=EC=84=B1=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Dependency/DependencyInformation.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TnT/Tuist/ProjectDescriptionHelpers/Dependency/DependencyInformation.swift b/TnT/Tuist/ProjectDescriptionHelpers/Dependency/DependencyInformation.swift index cde498f..f7d4fc0 100644 --- a/TnT/Tuist/ProjectDescriptionHelpers/Dependency/DependencyInformation.swift +++ b/TnT/Tuist/ProjectDescriptionHelpers/Dependency/DependencyInformation.swift @@ -11,7 +11,7 @@ let dependencyInfo: [DependencyInformation: [DependencyInformation]] = [ .TnTApp: [.Presentation, .Data], .Presentation: [.DesignSystem, .Domain, .ComposableArchitecture], .Domain: [.SwiftDepedencies], - .Data: [.Domain, .KakaoSDKUser], + .Data: [.Domain, .KakaoSDKUser, .SwiftDepedencies], .DesignSystem: [.Lottie], ]