-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
95bcb93
commit bbb3eba
Showing
5 changed files
with
44 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,3 +67,7 @@ fastlane/test_output | |
**/Cartfile.resolved | ||
**/Pods | ||
KitsExample | ||
|
||
# Swift Package Manager | ||
Package.resolved | ||
.build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// 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: "mParticle-CleverTap", | ||
platforms: [ .iOS(.v9) ], | ||
products: [ | ||
.library( | ||
name: "mParticle-CleverTap", | ||
targets: ["mParticle-CleverTap"]), | ||
], | ||
dependencies: [ | ||
.package(name: "mParticle-Apple-SDK", | ||
url: "https://github.com/mParticle/mparticle-apple-sdk", | ||
.upToNextMajor(from: "8.0.0")), | ||
.package(name: "CleverTapSDK", | ||
url: "https://github.com/CleverTap/clevertap-ios-sdk", | ||
.upToNextMajor(from: "4.2.0")), | ||
], | ||
targets: [ | ||
.target( | ||
name: "mParticle-CleverTap", | ||
dependencies: ["mParticle-Apple-SDK", "CleverTapSDK"], | ||
path: "mParticle-CleverTap", | ||
publicHeadersPath: "." | ||
), | ||
] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters