-
Notifications
You must be signed in to change notification settings - Fork 3
/
Package.swift
30 lines (28 loc) · 1.09 KB
/
Package.swift
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
26
27
28
29
30
// swift-tools-version:5.9
import PackageDescription
let package = Package(
name: "WultraMobileTokenSDK",
platforms: [
.iOS(.v12)
],
products: [
.library(name: "WultraMobileTokenSDK", targets: ["WultraMobileTokenSDK"])
],
dependencies: [
.package(url: "https://github.com/wultra/powerauth-mobile-sdk-spm.git", .upToNextMinor(from: "1.9.0")),
.package(url: "https://github.com/wultra/networking-apple.git", .upToNextMinor(from: "1.5.0"))
],
targets: [
.target(
name: "WultraMobileTokenSDK",
dependencies: [
.product(name: "PowerAuth2", package: "powerauth-mobile-sdk-spm"),
.product(name: "PowerAuthCore", package: "powerauth-mobile-sdk-spm"),
.product(name: "WultraPowerAuthNetworking", package: "networking-apple")
],
path: "WultraMobileTokenSDK",
exclude: ["ConfigFiles/Config.xcconfig", "ConfigFiles/Debug.xcconfig", "ConfigFiles/Release.xcconfig", "Info.plist", "Podfile"]
)
],
swiftLanguageVersions: [.v5]
)