6
0

add new version 12.0.3

This commit is contained in:
mac-mini-003 2024-04-19 13:58:58 +02:00
parent b62517dd5d
commit ae3cde40e9

View File

@ -15,21 +15,36 @@ let package = Package(
dependencies: [
// Dependencies declare other packages that this package depends on.
.package(
name: "WebIdDigitalSigningPlugin",
url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-digital-signing-plugin-spm",
.exact("10.0.0")
name: "WebIdVideoIdentProductPlugin",
url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-video-ident-product-plugin-spm.git",
.exact("12.0.3")
),
.package(
name: "WebIdVideoIdentPlugin",
url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-video-ident-plugin-spm",
.exact("9.0.0")
.exact("9.0.1")
),
.package(
name: "WebIdDigitalSigningPlugin",
url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-digital-signing-plugin-spm",
.exact("10.0.1")
),
.package(
name: "WebIdIosIdentScanPlugin",
url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-ident-scan-plugin-spm.git",
.exact("11.1.0")
),
.package(
name: "WebIdOnServerDocumentScanner",
url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-on-server-document-scanner-spm.git",
.exact("11.1.0")
)
],
targets: [
.binaryTarget(
name: "WebIdMetaPlugin",
url: "https://api.webid-solutions.de/releases/ios/xcframework/internal/de/webid-solutions/WebIdMetaPlugin/12.0.2/WebIdMetaPlugin.framework-v12.0.2.zip",
checksum: "d4f06d5e15cb64a42ca113f65d00bc90ad4afb6d423f6d949ca9c5e4beeddcf3"
url: "https://api.webid-solutions.de/releases/ios/xcframework/internal/de/webid-solutions/WebIdMetaPlugin/12.0.3/WebIdMetaPlugin.framework-v12.0.3.zip",
checksum: "b0c321432bfba25663197dbb8171ae571fc2b737ccb7e029c5f552a0a1dc8db5"
),
.target(
name: "WebIdMetaPluginWrapper",
@ -37,8 +52,11 @@ let package = Package(
.target(name: "WebIdMetaPlugin"),
// [target dependecies here]
.product(name: "WebIdDigitalSigningPlugin", package: "WebIdDigitalSigningPlugin"),
.product(name: "WebIdVideoIdentProductPlugin", package: "WebIdVideoIdentProductPlugin"),
.product(name: "WebIdVideoIdentPlugin", package: "WebIdVideoIdentPlugin"),
.product(name: "WebIdDigitalSigningPlugin", package: "WebIdDigitalSigningPlugin"),
.product(name: "WebIdIosIdentScanPlugin", package: "WebIdIosIdentScanPlugin"),
.product(name: "WebIdOnServerDocumentScanner", package: "WebIdOnServerDocumentScanner"),
]
)
],