Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
// swift-tools-version:5.3
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey @abelsonlive -- there's a fatal error in Xcode when integrating with SPM because of this missing line

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry @eddie-zhang, we've got separate work on-going to add SPM support. I've reverted these commits for now. I'll @ you on the PR once we're ready to merge it.

import PackageDescription

let package = Package(
name: "ParselyAnalytics",
platforms: [
.iOS(.v12)
],
products: [
.library(
name: "ParselyAnalytics",
targets: ["ParselyAnalytics"]),
],
dependencies: [],
targets: [
.target(
name: "ParselyAnalytics",
dependencies: [],
path: "ParselyTracker",
resources: [
]
),
.testTarget(
name: "ParselyTrackerTests",
dependencies: ["ParselyAnalytics"],
path: "ParselyTrackerTests")
]
)