2024-03-04 10:26:19 +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: "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",
|
2026-05-12 11:48:05 +02:00
|
|
|
url: "https://api.webid-solutions.de/releases/ios/xcframework/snapshots/de/webid-solutions/WebIdUiKitComponents/22.1.2/WebIdUiKitComponents.framework-v22.1.2-SNAPSHOT-703.zip",
|
|
|
|
|
checksum: "c48ea614e28f30f5aa11b51c1cf9f1011ba45ea04def9869e5175d1ec09b1ae4"
|
2024-03-04 10:26:19 +01:00
|
|
|
),
|
|
|
|
|
.target(
|
|
|
|
|
name: "WebIdUiKitComponentsWrapper",
|
|
|
|
|
dependencies: [
|
|
|
|
|
.target(name: "WebIdUiKitComponents"),
|
|
|
|
|
// [target dependecies here]
|
|
|
|
|
|
|
|
|
|
]
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
swiftLanguageVersions: [SwiftVersion.v5]
|
|
|
|
|
)
|