-
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-886] Add remote command version and update package managers (#8)
* [MT-886] use json file for carthage * [MT-886] add name and version to AppsFlyerRemoteCommand Used by new TealiumSwift to track what commands and version are being used. Fix remote commands interoperability with TealiumSwift 2.5+ Update SPM and Carthage versions too. * [MT-886] use swift tools 5.5 and exclude info plist * Update podspec for tealium 2.6 * SPM versions up to next major Co-authored-by: christinasund <[email protected]>
- Loading branch information
Showing
20 changed files
with
331 additions
and
105 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
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,4 +1,3 @@ | ||
github "tealium/tealium-swift" ~> 2.1 | ||
binary "https://raw.githubusercontent.com/AppsFlyerSDK/AppsFlyerFramework/master/Carthage/appsflyer-ios.json" ~> 6.0 | ||
|
||
github "tealium/tealium-swift" ~> 2.6 | ||
binary "https://raw.githubusercontent.com/AppsFlyerSDK/AppsFlyerFramework/6.5.0/Carthage/appsflyer-ios.json" ~> 6.4 | ||
|
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,2 @@ | ||
binary "https://raw.githubusercontent.com/AppsFlyerSDK/AppsFlyerFramework/master/Carthage/appsflyer-ios.json" "6.0.3" | ||
git "file:///Users/christina/Projects/work-repos/github/tealium-swift-builder" "9b5aa0cbb257718b98acb769589fcd7d56cdfd51" | ||
binary "https://raw.githubusercontent.com/AppsFlyerSDK/AppsFlyerFramework/6.5.0/Carthage/appsflyer-ios.json" "6.4.4" | ||
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,25 @@ | ||
{ | ||
"object": { | ||
"pins": [ | ||
{ | ||
"package": "AppsFlyerLib", | ||
"repositoryURL": "https://github.com/AppsFlyerSDK/AppsFlyerFramework", | ||
"state": { | ||
"branch": null, | ||
"revision": "3e8a25ec64433001287e2ff135d5ed3dbc634ad2", | ||
"version": "6.5.0" | ||
} | ||
}, | ||
{ | ||
"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.5 | ||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "TealiumAppsFlyer", | ||
platforms: [ | ||
.iOS(.v10) | ||
], | ||
products: [ | ||
.library(name: "TealiumAppsFlyer", targets: ["TealiumAppsFlyer"]) | ||
], | ||
dependencies: [ | ||
.package(name: "TealiumSwift", url: "https://github.com/tealium/tealium-swift", .upToNextMajor(from: "2.6.0")), | ||
.package(name: "AppsFlyerLib", url: "https://github.com/AppsFlyerSDK/AppsFlyerFramework", .upToNextMajor(from: "6.4.0")) | ||
], | ||
targets: [ | ||
.target( | ||
name: "TealiumAppsFlyer", | ||
dependencies: [ | ||
.product(name: "TealiumCore", package: "TealiumSwift"), | ||
.product(name: "TealiumRemoteCommands", package: "TealiumSwift"), | ||
.product(name: "AppsFlyerLib", package: "AppsFlyerLib") | ||
], | ||
path: "./Sources", | ||
exclude: ["Support"]), | ||
.testTarget( | ||
name: "TealiumAppsFlyerTests", | ||
dependencies: ["TealiumAppsFlyer"], | ||
path: "./Tests", | ||
exclude: ["Support"]) | ||
] | ||
) |
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
File renamed without changes.
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.