Skip to content

Commit

Permalink
[MT-1644] Update Android Tealium Core + VisitorService (#182)
Browse files Browse the repository at this point in the history
* Update Android Tealium Core + VisitorService
  • Loading branch information
tamayok authored Oct 29, 2024
1 parent 03656fe commit a30265d
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 9 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

[Full documentation](https://docs.tealium.com/platforms/react-native/install/)

-2.5.1
- Android fix: Added proper error handling for loading from file and saving VisitorProfile

- 2.5.0
- Android fix: VisitorProfile dates now displayed as numerical timestamps instead of strings
- Added `VisitorProfile` type definition
Expand Down
8 changes: 4 additions & 4 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ PODS:
- tealium-react-native-swift (~> 2.4)
- tealium-swift/Core (~> 2.14)
- tealium-swift/MomentsAPI (~> 2.14)
- tealium-react-native (2.5.0):
- tealium-react-native (2.5.1):
- React-Core
- tealium-swift/Collect (~> 2.13)
- tealium-swift/Core (~> 2.13)
Expand All @@ -518,7 +518,7 @@ PODS:
- tealium-react-native-swift (~> 2.4)
- tealium-swift/Core (~> 2.12)
- tealium-swift/Location (~> 2.12)
- tealium-react-native-swift (2.5.0):
- tealium-react-native-swift (2.5.1):
- React-Core
- tealium-react-native
- tealium-swift/Collect (~> 2.13)
Expand Down Expand Up @@ -808,10 +808,10 @@ SPEC CHECKSUMS:
tealium-react-braze: f72256073bf99902dbfbfcd875399cd0fac61796
tealium-react-firebase: 44bc3f5f8294a0f9fc2fba5ebd109bde31a141e5
tealium-react-moments-api: 34241abf796c723cdee660dd15dc7ff17ac41acb
tealium-react-native: 63c63a846552771b3c98e2b9fdfd85954864d1e6
tealium-react-native: f13fda95069e73fbf17d762ea9412b5a9224fcd5
tealium-react-native-crash-reporter: b6bbb018f2d3fc1c27a0423aca58c33820395d41
tealium-react-native-location: 7f275669c9434c0877e8ba20af06ac37c003657f
tealium-react-native-swift: 6a5ec3a0297a38fd6f437935cbc2c34361bfdb0f
tealium-react-native-swift: 72d2f1c2dac5758e1b45041edffe98c6a33f0937
tealium-swift: d2a1f3ee12f3a0aa759ab43c07005b24148b6f75
TealiumAdjust: 7a8c033c93f5aaf306ebecaa2e575a5958e55e87
TealiumAdobeVisitorAPI: dd487f3e130829a15b9cdc7de7b2841a200214e2
Expand Down
6 changes: 3 additions & 3 deletions npm-package/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ buildscript {
}
}

version = "2.5.0"
version = "2.5.1"
android {
compileSdkVersion safeExtGet('compileSdkVersion', DEFAULT_COMPILE_SDK_VERSION)
buildToolsVersion safeExtGet('buildToolsVersion', DEFAULT_BUILD_TOOLS_VERSION)
Expand Down Expand Up @@ -105,12 +105,12 @@ dependencies {
implementation 'com.facebook.react:react-native:+' // From node_modules

//Tealium
implementation 'com.tealium:kotlin-core:1.6.0'
implementation 'com.tealium:kotlin-core:1.6.1'
implementation 'com.tealium:kotlin-collect-dispatcher:1.1.1'
implementation 'com.tealium:kotlin-tagmanagement-dispatcher:1.2.3'
implementation 'com.tealium:kotlin-remotecommand-dispatcher:1.4.0'
implementation 'com.tealium:kotlin-lifecycle:1.2.0'
implementation 'com.tealium:kotlin-visitor-service:1.2.0'
implementation 'com.tealium:kotlin-visitor-service:1.2.1'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${project.ext.kotlinVersion}"

testImplementation 'com.facebook.react:react-native:+'
Expand Down
2 changes: 1 addition & 1 deletion npm-package/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default class Tealium {
});
}
TealiumWrapper.initialize(config, callback || (response => {}));
TealiumWrapper.addToDataLayer({'plugin_name': 'Tealium-ReactNative', 'plugin_version': '2.5.0'}, Expiry.forever);
TealiumWrapper.addToDataLayer({'plugin_name': 'Tealium-ReactNative', 'plugin_version': '2.5.1'}, Expiry.forever);
if (config["dispatchers"].includes(Dispatchers.RemoteCommands)) {
this.setRemoteCommandListener();
}
Expand Down
2 changes: 1 addition & 1 deletion npm-package/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "tealium-react-native",
"title": "Tealium React Native",
"version": "2.5.0",
"version": "2.5.1",
"description": "A native module for using Tealium's Kotlin and Swift libraries.",
"main": "index.js",
"types": "*.ts",
Expand Down

0 comments on commit a30265d

Please sign in to comment.