2024-08-28 14:25:20 +02: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: "WebIdSdkUiKitComponents",
|
|
|
|
platforms: [
|
|
|
|
.iOS(.v13)
|
|
|
|
],
|
|
|
|
products: [
|
|
|
|
// Products define the executables and libraries a package produces, and make them visible to other packages.
|
|
|
|
.library(name: "WebIdSdkUiKitComponents", targets: ["WebIdSdkUiKitComponentsWrapper"]),
|
|
|
|
],
|
|
|
|
dependencies: [
|
|
|
|
// Dependencies declare other packages that this package depends on.
|
|
|
|
.package(
|
|
|
|
name: "WebIdUiKitComponents",
|
|
|
|
url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackageRedesignV4/webid-ui-components-spm.git",
|
2024-09-06 15:08:42 +02:00
|
|
|
.upToNextMinor(from: "8.0.0")
|
2024-08-28 14:25:20 +02:00
|
|
|
),
|
|
|
|
.package(
|
|
|
|
name: "WebIdIosSdk",
|
|
|
|
url: "https://api.webid-solutions.de/releases/ios/spm/SwiftPackages/webid-sdk-spm.git",
|
2024-09-06 15:08:42 +02:00
|
|
|
.upToNextMinor(from: "11.1.0")
|
2024-08-28 14:25:20 +02:00
|
|
|
)
|
|
|
|
],
|
|
|
|
targets: [
|
|
|
|
.binaryTarget(
|
|
|
|
name: "WebIdSdkUiKitComponents",
|
2024-09-12 14:00:18 +02:00
|
|
|
url: "https://api.webid-solutions.de/releases/ios/xcframework/redesign-v4-snapshots/de/webid-solutions/WebIdSdkUiKitComponents/10.0.0/WebIdSdkUiKitComponents.framework-v10.0.0-SNAPSHOT-158.zip",
|
|
|
|
checksum: "9723ce9d68576d0faae8324a70542857d9b4e94eac2b298a1a7810c6c32dd211"
|
2024-08-28 14:25:20 +02:00
|
|
|
),
|
|
|
|
.target(
|
|
|
|
name: "WebIdSdkUiKitComponentsWrapper",
|
|
|
|
dependencies: [
|
|
|
|
.target(name: "WebIdSdkUiKitComponents"),
|
|
|
|
// [target dependecies here]
|
|
|
|
|
|
|
|
.product(name: "WebIdUiKitComponents", package: "WebIdUiKitComponents"),
|
|
|
|
.product(name: "WebIdIosSdk", package: "WebIdIosSdk"),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
],
|
|
|
|
swiftLanguageVersions: [SwiftVersion.v5]
|
|
|
|
)
|