// 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.2.2/WebIdAutoIdProductPlugin.framework-v201.2.2-SNAPSHOT-1566.zip", checksum: "30afc23f6d584c18da14a32819c24819fa3b53784223931f86a7ca5ef86e3e2f" ), .target( name: "WebIdAutoIdProductPluginWrapper", dependencies: [ .target(name: "WebIdAutoIdProductPlugin"), // [target dependecies here] ] ) ], swiftLanguageVersions: [SwiftVersion.v5] )