Skip to content

Commit

Permalink
Release 6.1.1746
Browse files Browse the repository at this point in the history
  • Loading branch information
jenkins committed Aug 20, 2024
1 parent a5a72e6 commit b022817
Showing 1 changed file with 19 additions and 7 deletions.
26 changes: 19 additions & 7 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,17 +1,29 @@
// swift-tools-version:5.3

import PackageDescription

let packageName = "FaceSDK"

let package = Package(
name: "FaceSDK",
platforms: [.iOS(.v11)],
products: [
.library(name: "FaceSDK", targets: ["FaceSDK"])
.library(
name: "FaceSDK",
targets: ["\(packageName)Common"]),
],
dependencies: [
.package(name: "RegulaCommon", url: "https://github.com/regulaforensics/RegulaCommon-Swift-Package.git", .exact(Version(stringLiteral: "7.1.379"))),
],
targets: [
.binaryTarget(
name: "FaceSDK",
url: "https://pods.regulaforensics.com/FaceSDKBeta/5.4.695/FaceSDKBeta-5.4.695.zip",
checksum: "c07f449c715b4111e4794a20dc585acd6171fc4b149ad9f951c89305012e8506"
.binaryTarget(name: "FaceSDK", url: "https://pods.regulaforensics.com/FaceSDK/6.1.1746/FaceSDK-6.1.1746.zip", checksum: "837035c93f8405be0ee65e9da720a73c76757a6fa79533958bd5c2318e3d9eee"),
.target(
name: "\(packageName)Common",
dependencies: [
.target(name: "FaceSDK"),
.product(name: "RegulaCommon", package: "RegulaCommon")
],
path: "Sources",
sources: ["dummy.swift"]
)
]
)
)

0 comments on commit b022817

Please sign in to comment.