// 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: "WebIdUiKitComponents", platforms: [ .iOS(.v13) ], products: [ // Products define the executables and libraries a package produces, and make them visible to other packages. .library(name: "WebIdUiKitComponents", targets: ["WebIdUiKitComponentsWrapper"]), ], dependencies: [ // Dependencies declare other packages that this package depends on. ], targets: [ .binaryTarget( name: "WebIdUiKitComponents", url: "https://api.webid-solutions.de/releases/ios/xcframework/redesign-v4/de/webid-solutions/WebIdUiKitComponents/20.0.1/WebIdUiKitComponents.framework-v20.0.1.zip", checksum: "50a0e2286cbd4ccfb78def3f30d99a3e053c3511c2c87e3b4705f01e2d71986b" ), .target( name: "WebIdUiKitComponentsWrapper", dependencies: [ .target(name: "WebIdUiKitComponents"), // [target dependecies here] ] ) ], swiftLanguageVersions: [SwiftVersion.v5] )