From a321ea44cabbeff5cf7f71fd42ac938df51937ae Mon Sep 17 00:00:00 2001 From: mac-mini-003 Date: Mon, 9 Sep 2024 16:22:41 +0200 Subject: [PATCH] add new version 11.0.0 --- Package.swift | 58 +++++++++++++++++++ .../WebIdVideoIdentPluginWrapper/Dummy.swift | 4 ++ 2 files changed, 62 insertions(+) create mode 100644 Package.swift create mode 100644 Sources/WebIdVideoIdentPluginWrapper/Dummy.swift diff --git a/Package.swift b/Package.swift new file mode 100644 index 0000000..a5d3a1c --- /dev/null +++ b/Package.swift @@ -0,0 +1,58 @@ +// 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: "WebIdVideoIdentPlugin", + platforms: [ + .iOS(.v13) + ], + products: [ + // Products define the executables and libraries a package produces, and make them visible to other packages. + .library(name: "WebIdVideoIdentPlugin", targets: ["WebIdVideoIdentPluginWrapper"]), + ], + dependencies: [ + // Dependencies declare other packages that this package depends on. + .package( + name: "WebIdPluginCore", + url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackageRedesignV4/webid-plugin-core-spm.git", + .exact("13.0.1") + ), + .package( + name: "DeviceKit", + url: "https://github.com/devicekit/DeviceKit.git", + .exact("5.2.2") + ), + .package( + name: "AhoyKit", + url: "https://github.com/ahoyconference/ahoykit-swift", + .exact("6.1.0") + ), + .package( + name: "AhoyWebRTC", + url: "https://github.com/ahoyconference/ahoywebrtc-swift.git", + .exact("1.8.0") + ) + ], + targets: [ + .binaryTarget( + name: "WebIdVideoIdentPlugin", + url: "https://api.webid-solutions.de/releases/ios/xcframework/redesign-v4/de/webid-solutions/WebIdVideoIdentPlugin/11.0.0/WebIdVideoIdentPlugin.framework-v11.0.0.zip", + checksum: "8cf12de24e38e9fe5e9f81783b603e3437457b08156837ea6364b9dcbed7e8f9" + ), + .target( + name: "WebIdVideoIdentPluginWrapper", + dependencies: [ + .target(name: "WebIdVideoIdentPlugin"), + // [target dependecies here] + + .product(name: "WebIdPluginCore", package: "WebIdPluginCore"), + .product(name: "DeviceKit", package: "DeviceKit"), + .product(name: "AhoyKit", package: "AhoyKit"), + .product(name: "AhoyWebRTC", package: "AhoyWebRTC"), + ] + ) + ], + swiftLanguageVersions: [SwiftVersion.v5] +) diff --git a/Sources/WebIdVideoIdentPluginWrapper/Dummy.swift b/Sources/WebIdVideoIdentPluginWrapper/Dummy.swift new file mode 100644 index 0000000..7dc7342 --- /dev/null +++ b/Sources/WebIdVideoIdentPluginWrapper/Dummy.swift @@ -0,0 +1,4 @@ +// +// Created by WebID Solutions GmbH | www.webid-solutions.de. +// See the file "LICENSE" for the full license governing this code. +//