2024-03-22 10:33:20 +01:00
|
|
|
// swift-tools-version:5.3
|
|
|
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
|
|
|
|
|
|
import PackageDescription
|
|
|
|
|
|
|
|
|
|
let package = Package(
|
|
|
|
|
name: "WebIdVideoIdentProductPlugin",
|
|
|
|
|
platforms: [
|
|
|
|
|
.iOS(.v13)
|
|
|
|
|
],
|
|
|
|
|
products: [
|
|
|
|
|
// Products define the executables and libraries a package produces, and make them visible to other packages.
|
|
|
|
|
.library(name: "WebIdVideoIdentProductPlugin", targets: ["WebIdVideoIdentProductPluginWrapper"]),
|
|
|
|
|
],
|
|
|
|
|
dependencies: [
|
|
|
|
|
// Dependencies declare other packages that this package depends on.
|
|
|
|
|
.package(
|
|
|
|
|
name: "WebIdIosIdentScanPlugin",
|
2025-03-12 18:54:31 +01:00
|
|
|
url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-ident-scan-plugin-spm",
|
2026-02-17 15:34:39 +01:00
|
|
|
.exact("15.1.2")
|
2024-03-22 10:33:20 +01:00
|
|
|
),
|
|
|
|
|
.package(
|
|
|
|
|
name: "WebIdOnServerDocumentScanner",
|
2025-03-12 18:54:31 +01:00
|
|
|
url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-on-server-document-scanner-spm",
|
2026-02-17 15:34:39 +01:00
|
|
|
.exact("15.1.2")
|
2024-03-22 10:33:20 +01:00
|
|
|
),
|
|
|
|
|
.package(
|
|
|
|
|
name: "WebIdDigitalSigningPlugin",
|
|
|
|
|
url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-digital-signing-plugin-spm",
|
2026-01-13 09:09:08 +01:00
|
|
|
.exact("15.1.1")
|
2024-03-22 10:33:20 +01:00
|
|
|
),
|
|
|
|
|
.package(
|
|
|
|
|
name: "WebIdVideoIdentPlugin",
|
|
|
|
|
url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-video-ident-plugin-spm",
|
2026-01-13 09:09:08 +01:00
|
|
|
.exact("15.2.1")
|
2024-03-22 10:33:20 +01:00
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
targets: [
|
|
|
|
|
.binaryTarget(
|
|
|
|
|
name: "WebIdVideoIdentProductPlugin",
|
2026-03-13 13:34:17 +01:00
|
|
|
url: "https://api.webid-solutions.de/releases/ios/xcframework/internal/de/webid-solutions/WebIdVideoIdentProductPlugin/15.3.3/WebIdVideoIdentProductPlugin.framework-v15.3.3.zip",
|
|
|
|
|
checksum: "ee1c5d5f3609902e555c324457a22f4b7f64e028cfaa1cea67d8b02091a80a15"
|
2024-03-22 10:33:20 +01:00
|
|
|
),
|
|
|
|
|
.target(
|
|
|
|
|
name: "WebIdVideoIdentProductPluginWrapper",
|
|
|
|
|
dependencies: [
|
|
|
|
|
.target(name: "WebIdVideoIdentProductPlugin"),
|
|
|
|
|
// [target dependecies here]
|
|
|
|
|
|
|
|
|
|
.product(name: "WebIdIosIdentScanPlugin", package: "WebIdIosIdentScanPlugin"),
|
|
|
|
|
.product(name: "WebIdOnServerDocumentScanner", package: "WebIdOnServerDocumentScanner"),
|
|
|
|
|
.product(name: "WebIdDigitalSigningPlugin", package: "WebIdDigitalSigningPlugin"),
|
|
|
|
|
.product(name: "WebIdVideoIdentPlugin", package: "WebIdVideoIdentPlugin"),
|
|
|
|
|
]
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
swiftLanguageVersions: [SwiftVersion.v5]
|
|
|
|
|
)
|