// 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: "WebIdDigitalSigningPlugin", platforms: [ .iOS(.v13) ], products: [ // Products define the executables and libraries a package produces, and make them visible to other packages. .library(name: "WebIdDigitalSigningPlugin", targets: ["WebIdDigitalSigningPluginWrapper"]), ], 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.2.1") ), .package( name: "WebIdSdkUiKitComponents", url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackageRedesignV4/webid-sdk-ui-components-spm.git", .exact("10.1.1") ) ], targets: [ .binaryTarget( name: "WebIdDigitalSigningPlugin", url: "https://api.webid-solutions.de/releases/ios/xcframework/redesign-v4/de/webid-solutions/WebIdDigitalSigningPlugin/12.1.2/WebIdDigitalSigningPlugin.framework-v12.1.2.zip", checksum: "15b4bd2b6813c3c3518c4b24d2fb78c5cb50ccb4e394938ed081b3267af9f8c9" ), .target( name: "WebIdDigitalSigningPluginWrapper", dependencies: [ .target(name: "WebIdDigitalSigningPlugin"), // [target dependecies here] .product(name: "WebIdPluginCore", package: "WebIdPluginCore"), .product(name: "WebIdSdkUiKitComponents", package: "WebIdSdkUiKitComponents"), ] ) ], swiftLanguageVersions: [SwiftVersion.v5] )