7
0

add new version 22.0.2

This commit is contained in:
mac-mini-003 2026-02-06 13:14:50 +01:00
parent abcb4898dc
commit 497d6b09d8

View File

@ -14,32 +14,17 @@ let package = Package(
], ],
dependencies: [ dependencies: [
// Dependencies declare other packages that this package depends on. // Dependencies declare other packages that this package depends on.
.package(
name: "WebIdVideoIdentPlugin",
url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-video-ident-plugin-spm",
.exact("21.0.1")
),
.package( .package(
name: "WebIdDigitalSigningPlugin", name: "WebIdDigitalSigningPlugin",
url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-digital-signing-plugin-spm", url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-digital-signing-plugin-spm",
.exact("21.0.1") .exact("21.0.2")
),
.package(
name: "WebIdIosIdentScanPlugin",
url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-ident-scan-plugin-spm",
.exact("21.0.1")
),
.package(
name: "WebIdOnServerDocumentScanner",
url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-on-server-document-scanner-spm",
.exact("21.0.1")
) )
], ],
targets: [ targets: [
.binaryTarget( .binaryTarget(
name: "WebIdMetaPlugin", name: "WebIdMetaPlugin",
url: "https://api.webid-solutions.de/releases/ios/xcframework/releases/de/webid-solutions/WebIdMetaPlugin/22.0.1/WebIdMetaPlugin.framework-v22.0.1.zip", url: "https://api.webid-solutions.de/releases/ios/xcframework/releases/de/webid-solutions/WebIdMetaPlugin/22.0.2/WebIdMetaPlugin.framework-v22.0.2.zip",
checksum: "c1b03a15ec6d87d595e400e3a80660ee5c44f8e6ffc3630143fc134988c3ddf1" checksum: "8bdc09b72df02325ce755c0da053ec4e1559c65c4ff7d957f8c69261f1544f18"
), ),
.target( .target(
name: "WebIdMetaPluginWrapper", name: "WebIdMetaPluginWrapper",
@ -47,10 +32,7 @@ let package = Package(
.target(name: "WebIdMetaPlugin"), .target(name: "WebIdMetaPlugin"),
// [target dependecies here] // [target dependecies here]
.product(name: "WebIdVideoIdentPlugin", package: "WebIdVideoIdentPlugin"),
.product(name: "WebIdDigitalSigningPlugin", package: "WebIdDigitalSigningPlugin"), .product(name: "WebIdDigitalSigningPlugin", package: "WebIdDigitalSigningPlugin"),
.product(name: "WebIdIosIdentScanPlugin", package: "WebIdIosIdentScanPlugin"),
.product(name: "WebIdOnServerDocumentScanner", package: "WebIdOnServerDocumentScanner"),
] ]
) )
], ],