-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
48 lines (40 loc) · 2 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// swift-tools-version:5.5
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let VERSION_PARAM_KIT: PackageDescription.Version = "6.1.2"
let VERSION_ANALYTICS_KIT: PackageDescription.Version = "4.0.2"
let VERSION_CRASH_REPORTER: PackageDescription.Version = "4.0.1"
let VERSION_NETWORK_REACHABILITY: PackageDescription.Version = "2.1.1"
let VERSION_COMMON_UI: PackageDescription.Version = "2.0.2"
let package = Package(
name: "PayUIndia-NativeOtpAssist",
platforms: [.iOS(.v13)],
products: [
.library(
name: "PayUIndia-NativeOtpAssist",
targets: ["PayUIndia-NativeOtpAssistTarget"]
)
],
dependencies: [
.package(name: "PayUIndia-PayUParams", url: "https://github.com/payu-intrepos/payu-params-iOS", from: VERSION_PARAM_KIT),
.package(name: "PayUIndia-NetworkReachability", url: "https://github.com/payu-intrepos/PayUNetworkReachability-iOS", from: VERSION_NETWORK_REACHABILITY),
.package(name: "PayUIndia-Analytics", url: "https://github.com/payu-intrepos/PayUAnalytics-iOS", from: VERSION_ANALYTICS_KIT),
.package(name: "PayUIndia-CrashReporter", url: "https://github.com/payu-intrepos/PayUCrashReporter-iOS", from: VERSION_CRASH_REPORTER),
.package(name: "PayUIndia-CommonUI", url: "https://github.com/payu-intrepos/PayUCommonUI-iOS", from: VERSION_COMMON_UI)
],
targets: [
.binaryTarget(name: "PayUNativeOtpAssist", path: "./framework/PayUNativeOtpAssist.xcframework"),
.target(
name: "PayUIndia-NativeOtpAssistTarget",
dependencies: [
.product(name: "PayUIndia-PayUParams", package: "PayUIndia-PayUParams"),
"PayUIndia-Analytics",
"PayUIndia-NetworkReachability",
"PayUIndia-CrashReporter",
"PayUNativeOtpAssist",
"PayUIndia-CommonUI"
],
path: "PayUIndia-NativeOtpAssistWrapper"
)
]
)