-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
32 lines (30 loc) · 1.01 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
31
32
// swift-tools-version:5.9
import PackageDescription
let package = Package(
name: "WultraPowerAuthNetworking",
platforms: [
.iOS(.v12),
.tvOS(.v12)
],
products: [
.library(
name: "WultraPowerAuthNetworking",
type: .dynamic,
targets: ["WultraPowerAuthNetworking"])
],
dependencies: [
.package(url: "https://github.com/wultra/powerauth-mobile-sdk-spm.git", .upToNextMinor(from: "1.9.2"))
],
targets: [
.target(
name: "WultraPowerAuthNetworking",
dependencies: [
.product(name: "PowerAuth2", package: "powerauth-mobile-sdk-spm"),
.product(name: "PowerAuthCore", package: "powerauth-mobile-sdk-spm")
],
// For historical reasons, the folder has a wrong case-sensitive name, so we have to force the path
// to get rid of swift PM warning.
path: "Sources/WultraPowerauthNetworking")
],
swiftLanguageVersions: [.v5]
)