-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
31 lines (29 loc) · 980 Bytes
/
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
// swift-tools-version:5.3
// Package.swift
import PackageDescription
let package = Package(
name: "ApplangaSwiftUI",
products: [
.library(
name: "ApplangaSwiftUI",
targets: ["ApplangaSwiftUIWrapper"])
],
dependencies: [
.package(name: "Applanga", url: "https://github.com/applanga/sdk-ios", from: "2.0.204")
],
targets: [
.binaryTarget(name: "ApplangaSwiftUI",
path: "ApplangaSwiftUI.xcframework"),
.target(name: "ApplangaSwiftUIWrapper",
dependencies: [
.product(name: "Applanga", package: "Applanga"),
.target(name: "ApplangaSwiftUI")
],
path: "ApplangaSwiftUIWrapper"),
.target(name: "ApplangaSwiftUITarget",
dependencies: [
.target(name: "ApplangaSwiftUIWrapper")
],
path: "ApplangaSwiftUITarget")
]
)