-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
25 lines (23 loc) · 850 Bytes
/
Package.swift
File metadata and controls
25 lines (23 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// swift-tools-version:5.9
import PackageDescription
let package = Package(
name: "WultraDigitalOnboarding",
platforms: [
.iOS(.v13)
],
products: [
.library(name: "WultraDigitalOnboarding", targets: ["WultraDigitalOnboarding"])
],
dependencies: [
.package(name: "PowerAuth2", url: "https://github.com/wultra/powerauth-mobile-sdk-spm.git", .upToNextMinor(from: "1.9.0")),
.package(name: "WultraPowerAuthNetworking", url: "https://github.com/wultra/networking-apple.git", .upToNextMinor(from: "1.5.0"))
],
targets: [
.target(
name: "WultraDigitalOnboarding",
dependencies: ["PowerAuth2", .product(name: "PowerAuthCore", package: "PowerAuth2"), "WultraPowerAuthNetworking"],
path: "Sources"
)
],
swiftLanguageVersions: [.v5]
)