-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift.local
More file actions
52 lines (50 loc) · 1.68 KB
/
Package.swift.local
File metadata and controls
52 lines (50 loc) · 1.68 KB
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
// swift-tools-version:5.3
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "Insider",
platforms: [
.iOS(.v12)
],
products: [
.library(
name: "InsiderMobile",
targets: ["InsiderMobile"]),
.library(
name: "InsiderGeofence",
targets: ["InsiderGeofence"]),
.library(
name: "InsiderMobileAdvancedNotification",
targets: ["InsiderMobileAdvancedNotification"]),
.library(
name: "InsiderWebView",
targets: ["InsiderWebView", "InsiderMobile"]),
],
targets: [
.binaryTarget(
name: "InsiderMobile",
path: "build/InsiderMobile/outputs/InsiderMobile.xcframework.zip"
),
.binaryTarget(
name: "InsiderGeofence",
path: "build/InsiderGeofence/outputs/InsiderGeofence.xcframework.zip"
),
.binaryTarget(
name: "InsiderMobileAdvancedNotification",
url: "https://mobilesdk.useinsider.com/iOSNotification/2.3.1/InsiderMobileAdvancedNotification.zip",
checksum: "6f5c8ea5a91259b6722671cc9c84d0e159b900f0baa4297f31a6debf7c6f4feb"
),
.target(
name: "InsiderNotificationContent",
dependencies: ["InsiderMobileAdvancedNotification"],
path: "./",
resources: [
.process("InsiderInterface.storyboard")
]
),
.binaryTarget(
name: "InsiderWebView",
path: "build/InsiderWebView/outputs/InsiderWebView.xcframework.zip"
),
]
)