-
Notifications
You must be signed in to change notification settings - Fork 39
/
Package.swift
62 lines (57 loc) · 1.41 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
49
50
51
52
53
54
55
56
57
58
59
// swift-tools-version:5.9
import PackageDescription
let package = Package(
name: "Adapty",
platforms: [
.iOS("12.2"),
.macOS("10.14.4"),
.visionOS(.v1),
],
products: [
.library(
name: "Adapty",
targets: ["Adapty"]
),
.library(
name: "AdaptyUI",
targets: ["AdaptyUI"]
),
.library(
name: "AdaptyUITesting",
targets: ["AdaptyUITesting"]
),
.library(
name: "AdaptyCrossPlatformCommon",
targets: ["AdaptyCrossPlatformCommon"]
),
],
targets: [
.target(
name: "Adapty",
dependencies: [],
path: "Sources",
resources: [.copy("PrivacyInfo.xcprivacy")]
),
.target(
name: "AdaptyUI",
dependencies: ["Adapty"],
path: "AdaptyUI",
resources: [.copy("PrivacyInfo.xcprivacy")]
),
.target(
name: "AdaptyUITesting",
dependencies: ["Adapty", "AdaptyUI"],
path: "AdaptyUITesting"
),
.target(
name: "AdaptyCrossPlatformCommon",
dependencies: ["Adapty"],
path: "CrossPlatformCommon"
),
.testTarget(
name: "AdaptyTests",
dependencies: ["Adapty"],
path: "Tests"
),
]
)