mirror of
https://github.com/mixpanel/mixpanel-swift
synced 2026-04-21 13:37:18 +00:00
34 lines
646 B
Swift
34 lines
646 B
Swift
// swift-tools-version:5.3
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Mixpanel",
|
|
platforms: [
|
|
.iOS(.v12),
|
|
.tvOS(.v12),
|
|
.macOS(.v10_13),
|
|
.watchOS(.v4),
|
|
],
|
|
products: [
|
|
.library(name: "Mixpanel", targets: ["Mixpanel"])
|
|
],
|
|
dependencies: [
|
|
.package(
|
|
url: "https://github.com/advantagefse/json-logic-swift",
|
|
from: "1.2.0"
|
|
)
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "Mixpanel",
|
|
dependencies: [
|
|
.product(name: "jsonlogic", package: "json-logic-swift")
|
|
],
|
|
path: "Sources",
|
|
resources: [
|
|
.copy("Mixpanel/PrivacyInfo.xcprivacy")
|
|
]
|
|
)
|
|
]
|
|
)
|