// 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/snapshots/de/webid-solutions/WebIdUiKitComponents/7.0.1/WebIdUiKitComponents.framework-v7.0.1-SNAPSHOT-185.zip", checksum: "8b86566981e63f0999af6114b790358f0a47343b57d5ef66315dfa0235f38085" ), .target( name: "WebIdUiKitComponentsWrapper", dependencies: [ .target(name: "WebIdUiKitComponents"), // [target dependecies here] ] ) ], swiftLanguageVersions: [SwiftVersion.v5] )