// 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: "WebIdIosSdk", platforms: [ .iOS(.v13) ], products: [ // Products define the executables and libraries a package produces, and make them visible to other packages. .library(name: "WebIdIosSdk", targets: ["WebIdIosSdkWrapper"]), ], dependencies: [ // Dependencies declare other packages that this package depends on. ], targets: [ .binaryTarget( name: "WebIdIosSdk", url: "https://api.webid-solutions.de/releases/ios/xcframework/legacy-snapshots/de/webid-solutions/WebIdIosSdk/15.0.0/WebIdIosSdk.framework-v15.0.0-SNAPSHOT-625.zip", checksum: "ef40d5c8d514b224c47d8b3501d8836b89c570b06ed7105f46e15d0aaefaf6ab" ), .target( name: "WebIdIosSdkWrapper", dependencies: [ .target(name: "WebIdIosSdk"), // [target dependecies here] ] ) ], swiftLanguageVersions: [SwiftVersion.v5] )