-
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.
[MT-883] Add remote command version and update package manager depend…
…encies (#14) * [MT-883] add name and version to BrazeRemoteCommand Used by new TealiumSwift to track what commands and version are being used. Fix remote commands interoperability with TealiumSwift 2.5+ Upgrade Braze to 4.0+ * [MT-883] add SwiftPackageManager support * [MT-883] Fix project for carthage removed build phase script and manually added the frameworks * Update carthage to use binary dependency for braze SDK * Update dependencies for swift 2.6 * SPM versions up to next major * [MT-883] Add tealium metadata and remove useless initialize method * Add braze debug logging on sample
- Loading branch information
Showing
13 changed files
with
167 additions
and
104 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
github "tealium/tealium-swift" ~> 2.1 | ||
binary "https://raw.githubusercontent.com/Appboy/appboy-ios-sdk/master/appboy_ios_sdk_core.json" ~> 3.2 | ||
github "tealium/tealium-swift" ~> 2.6 | ||
binary "https://raw.githubusercontent.com/Appboy/appboy-ios-sdk/master/appboy_ios_sdk.json" ~> 4.4 | ||
github "SDWebImage/SDWebImage" ~> 5.12 |
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,3 @@ | ||
binary "https://raw.githubusercontent.com/Appboy/appboy-ios-sdk/master/appboy_ios_sdk.json" "4.4.1" | ||
github "SDWebImage/SDWebImage" "5.12.2" | ||
github "tealium/tealium-swift" "2.5.1" |
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,34 @@ | ||
{ | ||
"object": { | ||
"pins": [ | ||
{ | ||
"package": "Appboy_iOS_SDK", | ||
"repositoryURL": "https://github.com/Appboy/appboy-ios-sdk", | ||
"state": { | ||
"branch": null, | ||
"revision": "23ec2e8e337856b22801288a0f25ec5895e783a2", | ||
"version": "4.4.1" | ||
} | ||
}, | ||
{ | ||
"package": "SDWebImage", | ||
"repositoryURL": "https://github.com/SDWebImage/SDWebImage.git", | ||
"state": { | ||
"branch": null, | ||
"revision": "a72df4849408da7e5d3c1b586797b7c601c41d1b", | ||
"version": "5.12.1" | ||
} | ||
}, | ||
{ | ||
"package": "TealiumSwift", | ||
"repositoryURL": "https://github.com/tealium/tealium-swift", | ||
"state": { | ||
"branch": null, | ||
"revision": "9bd74f09c780862de61101bd147b1c6b232f98ce", | ||
"version": "2.5.1" | ||
} | ||
} | ||
] | ||
}, | ||
"version": 1 | ||
} |
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,32 @@ | ||
// swift-tools-version:5.1 | ||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "TealiumBraze", | ||
platforms: [ | ||
.iOS(.v10) | ||
], | ||
products: [ | ||
.library(name: "TealiumBraze", targets: ["TealiumBraze"]) | ||
], | ||
dependencies: [ | ||
.package(url: "https://github.com/tealium/tealium-swift", .upToNextMajor(from: "2.6.0")), | ||
.package(url: "https://github.com/Appboy/appboy-ios-sdk", .upToNextMajor(from: "4.4.1")) | ||
], | ||
targets: [ | ||
.target( | ||
name: "TealiumBraze", | ||
dependencies: [ | ||
.product(name: "AppboyUI", package: "appboy-ios-sdk"), | ||
.product(name: "TealiumCore", package: "tealium-swift"), | ||
.product(name: "TealiumRemoteCommands", package: "tealium-swift") | ||
], | ||
path: "./Sources"), | ||
.testTarget( | ||
name: "TealiumBrazeTests", | ||
dependencies: [ | ||
.target(name: "TealiumBraze") | ||
], | ||
path: "./Tests") | ||
] | ||
) |
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
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
Oops, something went wrong.