-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
33 lines (29 loc) · 1.04 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
// swift-tools-version: 5.10
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
// swift-tools-version:5.3
let package = Package(
name: "MixpanelLibWrapper",
products: [
.library(
name: "MixpanelLibWrapper",
targets: ["MixpanelLibWrapper"]),
],
dependencies: [
.package(url: "https://github.com/mixpanel/mixpanel-iphone", .upToNextMajor(from: "5.0.0")),
],
targets: [
.binaryTarget(
name: "mixpanelLib",
url:"https://github.com/YouSee/TV-KMP-Artifactory/raw/refs/heads/main/mixpanelLib.xcframework.zip",
checksum:"016569fde8b7e0867b7614214151af8ba9b0daccb76365c5cf02dd1ac20d221f"),
.target(
name: "MixpanelLibWrapper",
dependencies: [
.target(name: "mixpanelLib"),
.product(name: "Mixpanel", package: "mixpanel-iphone")
],
path: "Sources/MixpanelLibWrapper"
),
]
)