The eitri-ios
library is available via Swift Package Manager.
-
In Xcode, open your project and go to
File > Add Packages...
-
In the Search or Enter Package URL field, paste the repository URL:
https://github.com/Calindra/eitri-ios
-
Choose the latest available version or select a specific version/range.
-
Click Add Package to confirm.
-
In the next dialog, make sure the package is added to the correct target(s) of your project.
If you are managing dependencies manually with a Package.swift
file, add the following to your dependencies:
dependencies: [
.package(url: "https://github.com/Calindra/eitri-ios", from: "X.Y.Z") // Replace X.Y.Z with the desired version
]
And don't forget to add "Eitri"
to your target dependencies:
.target(
name: "YourTarget",
dependencies: [
"Eitri"
]
)
- iOS 13.0+
- Swift 5.5+