Skip to content

Commit

Permalink
🔧 Fix SPM dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
olejnjak committed Feb 21, 2024
1 parent 5905e90 commit 22b00cc
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 32 deletions.
33 changes: 21 additions & 12 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -9,31 +9,40 @@
"version" : "1.2022062300.0"
}
},
{
"identity" : "ackategories",
"kind" : "remoteSourceControl",
"location" : "https://github.com/AckeeCZ/ACKategories",
"state" : {
"revision" : "8eee63049dab5279d799a0e591a988b573484cdf",
"version" : "6.13.0"
}
},
{
"identity" : "app-check",
"kind" : "remoteSourceControl",
"location" : "https://github.com/google/app-check.git",
"state" : {
"revision" : "5746b2d35c91c50581590ed97abe4c06b5037274",
"version" : "10.18.0"
"revision" : "3e464dad87dad2d29bb29a97836789bf0f8f67d2",
"version" : "10.18.1"
}
},
{
"identity" : "firebase-ios-sdk",
"kind" : "remoteSourceControl",
"location" : "https://github.com/firebase/firebase-ios-sdk",
"state" : {
"revision" : "d9bcd141c3e4ad48a9500e6faeebb073f43cbcbd",
"version" : "10.19.0"
"revision" : "f91c8167141d0279726c6f6d9d4a47c026785cbc",
"version" : "10.21.0"
}
},
{
"identity" : "googleappmeasurement",
"kind" : "remoteSourceControl",
"location" : "https://github.com/google/GoogleAppMeasurement.git",
"state" : {
"revision" : "6b332152355c372ace9966d8ee76ed191f97025e",
"version" : "10.17.0"
"revision" : "cb8617fab75d181270a1d8f763f26b15c73e2e1e",
"version" : "10.21.0"
}
},
{
Expand Down Expand Up @@ -68,8 +77,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/google/gtm-session-fetcher.git",
"state" : {
"revision" : "d415594121c9e8a4f9d79cecee0965cf35e74dbd",
"version" : "3.1.1"
"revision" : "76135c9f4e1ac85459d5fec61b6f76ac47ab3a4c",
"version" : "3.3.1"
}
},
{
Expand All @@ -86,8 +95,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/firebase/leveldb.git",
"state" : {
"revision" : "0706abcc6b0bd9cedfbb015ba840e4a780b5159b",
"version" : "1.22.2"
"revision" : "9d108e9112aa1d65ce508facf804674546116d9c",
"version" : "1.22.3"
}
},
{
Expand All @@ -113,8 +122,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/apple/swift-protobuf.git",
"state" : {
"revision" : "f25867a208f459d3c5a06935dceb9083b11cd539",
"version" : "1.22.0"
"revision" : "65e8f29b2d63c4e38e736b25c27b83e012159be8",
"version" : "1.25.2"
}
}
],
Expand Down
30 changes: 10 additions & 20 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,6 @@ let package = Package(
.watchOS(.v6),
],
products: [
.library(
name: "AckeeTemplate",
targets: ["AckeeTemplate"]
),
.library(
name: "PushNotifications",
targets: ["PushNotifications"]
),
.library(
name: "FirebaseFetcher",
targets: ["FirebaseFetcher"]
Expand All @@ -28,26 +20,24 @@ let package = Package(
url: "https://github.com/firebase/firebase-ios-sdk",
.upToNextMajor(from: "10.19.0")
),
.package(
url: "https://github.com/AckeeCZ/ACKategories",
.upToNextMajor(from: "6.13.0")
),
],
targets: [
.target(name: "AckeeTemplate"),
.testTarget(
name: "AckeeTemplateTests",
dependencies: ["AckeeTemplate"]
),
.target(name: "PushNotifications"),
.testTarget(
name: "PushNotificationsTests",
dependencies: ["PushNotifications"]
),
.target(
name: "FirebaseFetcher",
dependencies: [
"AckeeTemplate",
.product(
name: "FirebaseRemoteConfigSwift",
name: "ACKategories",
package: "ACKategories"
),
.product(
name: "FirebaseRemoteConfig",
package: "firebase-ios-sdk"
),

]
)
]
Expand Down

0 comments on commit 22b00cc

Please sign in to comment.