6
0

add new version 20.3.1-SNAPSHOT-504

This commit is contained in:
mac-mini-003 2025-10-30 17:42:14 +01:00
parent 8e3349f566
commit 52e4b557a6

View File

@ -14,6 +14,11 @@ 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: "WebIdPluginCore",
url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-plugin-core-spm.git",
.branch("experimental")
),
.package( .package(
name: "DeviceKit", name: "DeviceKit",
url: "https://github.com/devicekit/DeviceKit.git", url: "https://github.com/devicekit/DeviceKit.git",
@ -24,11 +29,6 @@ let package = Package(
url: "https://github.com/ahoyconference/ahoykit-swift", url: "https://github.com/ahoyconference/ahoykit-swift",
.exact("6.1.0") .exact("6.1.0")
), ),
.package(
name: "WebIdPluginCore",
url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-plugin-core-spm.git",
.branch("legacy-snapshots")
),
.package( .package(
name: "AhoyWebRTC", name: "AhoyWebRTC",
url: "https://github.com/ahoyconference/ahoywebrtc-swift.git", url: "https://github.com/ahoyconference/ahoywebrtc-swift.git",
@ -38,8 +38,8 @@ let package = Package(
targets: [ targets: [
.binaryTarget( .binaryTarget(
name: "WebIdVideoIdentPlugin", name: "WebIdVideoIdentPlugin",
url: "https://api.webid-solutions.de/releases/ios/xcframework/experimental/de/webid-solutions/WebIdVideoIdentPlugin/15.0.1/WebIdVideoIdentPlugin.framework-v15.0.1-SNAPSHOT-388.zip", url: "https://api.webid-solutions.de/releases/ios/xcframework/experimental/de/webid-solutions/WebIdVideoIdentPlugin/20.3.1/WebIdVideoIdentPlugin.framework-v20.3.1-SNAPSHOT-504.zip",
checksum: "b0b30fe1fa8163c6d8c853088ca0d911dea37a3ab40bca0cff3f8310aec2d44a" checksum: "6b2d39641ca46d22392f066a66004a4aaeef0c27016364aa91a77cb6c204588b"
), ),
.target( .target(
name: "WebIdVideoIdentPluginWrapper", name: "WebIdVideoIdentPluginWrapper",
@ -47,9 +47,9 @@ let package = Package(
.target(name: "WebIdVideoIdentPlugin"), .target(name: "WebIdVideoIdentPlugin"),
// [target dependecies here] // [target dependecies here]
.product(name: "WebIdPluginCore", package: "WebIdPluginCore"),
.product(name: "DeviceKit", package: "DeviceKit"), .product(name: "DeviceKit", package: "DeviceKit"),
.product(name: "AhoyKit", package: "AhoyKit"), .product(name: "AhoyKit", package: "AhoyKit"),
.product(name: "WebIdPluginCore", package: "WebIdPluginCore"),
.product(name: "AhoyWebRTC", package: "AhoyWebRTC"), .product(name: "AhoyWebRTC", package: "AhoyWebRTC"),
] ]
) )