6
0
webid-sdk-spm/Package.swift

36 lines
1.1 KiB
Swift
Raw Normal View History

2024-03-14 11:21:04 +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",
2025-04-11 15:21:41 +02:00
url: "https://api.webid-solutions.de/releases/ios/xcframework/internal/de/webid-solutions/WebIdIosSdk/11.3.1/WebIdIosSdk.framework-v11.3.1.zip",
checksum: "381724bfeac37389a85746cf02ff04f9811360db579ae1464c91e2a5293c1835"
2024-03-14 11:21:04 +01:00
),
.target(
name: "WebIdIosSdkWrapper",
dependencies: [
.target(name: "WebIdIosSdk"),
// [target dependecies here]
]
)
],
swiftLanguageVersions: [SwiftVersion.v5]
)