Skip to content

Commit

Permalink
💚 :: Dependencies 최신화?
Browse files Browse the repository at this point in the history
  • Loading branch information
baekteun committed Feb 1, 2024
1 parent d043fbf commit 67dc826
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ public extension TargetDependency.SPM {
static let FirebaseAnalytics = TargetDependency.external(name: "FirebaseAnalyticsWithoutAdIdSupport")
static let FirebaseCrashlytics = TargetDependency.external(name: "FirebaseCrashlytics")
static let NVActivityIndicatorView = TargetDependency.external(name: "NVActivityIndicatorView")
static let Realm = TargetDependency.external(name: "Realm")
static let RealmSwift = TargetDependency.external(name: "RealmSwift")

// MARK: Native SPM
static let YouTubePlayerKit = TargetDependency.package(product: "YouTubePlayerKit")
Expand Down
4 changes: 2 additions & 2 deletions Projects/Modules/ThirdPartyLib/Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ let project = Project.makeModule(
name: "ThirdPartyLib",
product: .framework,
dependencies: [
.XCFramework.Realm,
.XCFramework.RealmSwift,
.SPM.Realm,
.SPM.RealmSwift,
.SPM.NaverLogin,
.SPM.RxSwift,
.SPM.RxMoya,
Expand Down
3 changes: 2 additions & 1 deletion Tuist/Dependencies.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ let dependencies = Dependencies(
.remote(url: "https://github.com/krzyzanowskim/CryptoSwift.git", requirement: .upToNextMajor(from: "1.8.0")),
.remote(url: "https://github.com/cbpowell/MarqueeLabel.git", requirement: .upToNextMajor(from: "4.3.0")),
.remote(url: "https://github.com/firebase/firebase-ios-sdk.git", requirement: .upToNextMajor(from: "10.7.0")),
.remote(url: "https://github.com/ninjaprox/NVActivityIndicatorView.git", requirement: .upToNextMajor(from: "5.1.1"))
.remote(url: "https://github.com/ninjaprox/NVActivityIndicatorView.git", requirement: .upToNextMajor(from: "5.1.1")),
.remote(url: "https://github.com/realm/realm-swift", requirement: .upToNextMajor(from: "10.46.0"))
],
baseSettings: .settings(
configurations: [
Expand Down

0 comments on commit 67dc826

Please sign in to comment.