Skip to content

Commit

Permalink
Merge pull request #382 from BlinkID/fix/swift_package
Browse files Browse the repository at this point in the history
Add Swift Package file
  • Loading branch information
mijo-gracanin committed Dec 15, 2022
2 parents 485b5b3 + a8222ce commit c35970b
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
// swift-tools-version:5.7
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "BlinkID",
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(
name: "BlinkID",
targets: ["BlinkID"]
)
],
dependencies: [],
targets: [
.binaryTarget(
name: "BlinkID",
url: "https://github.com/BlinkID/blinkid-ios/releases/download/v6.0.0/BlinkID.xcframework.zip",
checksum: "7a39c387890934f64c2cc844db1582396f06c062ff886d58e32d4b40fc44ede6")
]
)

0 comments on commit c35970b

Please sign in to comment.