Skip to content

Commit

Permalink
Merge pull request #113 from kustomer/raymond.jones/size/kdev-66606-s…
Browse files Browse the repository at this point in the history
…napkit-implementation-only

[Size][KDEV-66605] Add proper version of SnapKit and Reachability to Package.swift and Podspec
  • Loading branch information
raymondjoneskustomer authored Sep 20, 2024
2 parents 2551b65 + dace58a commit 7988c75
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 1 deletion.
2 changes: 2 additions & 0 deletions KustomerChat.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,6 @@ Pod::Spec.new do |s|
s.vendored_frameworks = 'KustomerChat.xcframework'
s.dependency 'PubNubSwift', '~> 6.3.0'
s.dependency 'Down', '~> 0.11.0'
s.dependency 'SnapKit', '~> 5.0.1'
s.dependency 'ReachabilitySwift', '~> 5.0.0'
end
18 changes: 18 additions & 0 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,24 @@
"revision": "649a9e93f7744c0961706a7f8781b138707a55ed",
"version": "6.3.0"
}
},
{
"package": "SnapKit",
"repositoryURL": "https://github.com/SnapKit/SnapKit",
"state": {
"branch": null,
"revision": "d458564516e5676af9c70b4f4b2a9178294f1bc6",
"version": "5.0.1"
}
},
{
"package": "Reachability",
"repositoryURL": "https://github.com/ashleymills/Reachability.swift",
"state": {
"branch": null,
"revision": "98e968e7b6c1318fb61df23e347bc319761e8acb",
"version": "5.0.0"
}
}
]
},
Expand Down
4 changes: 3 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ let package = Package(
],
dependencies: [
.package(name: "PubNub", url: "https://github.com/pubnub/swift.git", from: "6.3.0"),
.package(name: "Down", url: "https://github.com/kustomer/Down", from: "0.11.0")
.package(name: "Down", url: "https://github.com/kustomer/Down", from: "0.11.0"),
.package(name: "SnapKit", url: "https://github.com/SnapKit/SnapKit", from: "5.0.1")
.package(name: "Reachability", url: "https://github.com/ashleymills/Reachability.swift", from: "5.0.0")
],
targets: [
.binaryTarget(
Expand Down

0 comments on commit 7988c75

Please sign in to comment.