// 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: "WebIdAutoIdProductPlugin", platforms: [ .iOS(.v13) ], products: [ // Products define the executables and libraries a package produces, and make them visible to other packages. .library(name: "WebIdAutoIdProductPlugin", targets: ["WebIdAutoIdProductPluginWrapper"]), ], dependencies: [ // Dependencies declare other packages that this package depends on. ], targets: [ .binaryTarget( name: "WebIdAutoIdProductPlugin", url: "https://api.webid-solutions.de/releases/ios/xcframework/experimental/de/webid-solutions/WebIdAutoIdProductPlugin/201.1.5/WebIdAutoIdProductPlugin.framework-v201.1.5-SNAPSHOT-1574.zip", checksum: "b33577038502410a2b52e8fbe10cadd7deae99d2988d1ee070439ce0a7af44ca" ), .target( name: "WebIdAutoIdProductPluginWrapper", dependencies: [ .target(name: "WebIdAutoIdProductPlugin"), // [target dependecies here] ] ) ], swiftLanguageVersions: [SwiftVersion.v5] )