2024-03-01 12:26:42 +01:00
|
|
|
// 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",
|
2026-03-11 08:40:53 +01:00
|
|
|
url: "https://api.webid-solutions.de/releases/ios/xcframework/snapshots/de/webid-solutions/WebIdIosSdk/21.3.1/WebIdIosSdk.framework-v21.3.1-SNAPSHOT-682.zip",
|
|
|
|
|
checksum: "b7e1a59aa7eb33e2edf48d18a8a0c3a28e771d4f37cfe33e6266e783d42cbbc4"
|
2024-03-01 12:26:42 +01:00
|
|
|
),
|
|
|
|
|
.target(
|
|
|
|
|
name: "WebIdIosSdkWrapper",
|
|
|
|
|
dependencies: [
|
|
|
|
|
.target(name: "WebIdIosSdk"),
|
|
|
|
|
// [target dependecies here]
|
|
|
|
|
|
|
|
|
|
]
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
swiftLanguageVersions: [SwiftVersion.v5]
|
|
|
|
|
)
|