Skip to content

Commit

Permalink
Add Kingfisher library (image loading library)
Browse files Browse the repository at this point in the history
  • Loading branch information
ncipollo committed Feb 27, 2023
1 parent 2bcdf94 commit 6dbee20
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.build
8 changes: 8 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ let package = Package(
.library(
name: "IterableSDK",
targets: ["IterableSDK"]),
.library(
name: "Kingfisher",
targets: ["Kingfisher"]),
],
targets: [
.binaryTarget(
Expand All @@ -22,6 +25,11 @@ let package = Package(
name: "IterableSDK",
url: "https://github.com/Iterable/swift-sdk/releases/download/6.3.2/IterableSDK.xcframework.zip",
checksum: "d02f37b40783569612d5e82f8da94acfca1e81d97a176dca866a86b8886560b3"
),
.binaryTarget(
name: "Kingfisher",
url: "https://github.com/onevcat/Kingfisher/releases/download/7.6.2/Kingfisher-7.6.2.zip",
checksum: "76a47eb79a6fb3387276a786d3f949db1e98d493d9fb8fa0eb5d5cec5d57ccda"
)
]
)

0 comments on commit 6dbee20

Please sign in to comment.