Skip to content

Commit

Permalink
Release 5.9.0 (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
tamayok authored Oct 20, 2020
1 parent 17d13af commit 824d298
Show file tree
Hide file tree
Showing 15 changed files with 19 additions and 12 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# Change Log
- 5.9.0
- Refactoring to accomodate for new remote commands adapter
- Includes fixes for issues regarding erasing visitor profile before deletion
- RemoteCommands Adapter Module 1.0.0
- General Remote Commands extracted from core library for use with Tealiu Android in Java and Kotlin
- 5.8.0
- Tealium IQ session reporting is now handled by the SDK rather than the webview - note. it is important to update your Mobile.html template within Tealium IQ when updating to v5.8.0 in order to support this change.
- Minor fixes for issues raised by security scan
Expand Down
2 changes: 1 addition & 1 deletion Modules/AndroidWear/WearSample/mobile/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dependencies {
implementation 'com.google.android.gms:play-services-wearable:10.2.6'
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.0-beta4'
implementation 'com.tealium:library:5.8.0'
implementation 'com.tealium:library:5.9.0'
implementation(name:'tealium.mobile-5.0.0', ext:'aar')
testImplementation 'junit:junit:4.12'
}
2 changes: 1 addition & 1 deletion Modules/LifeCycle/MobileSample/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ android {

dependencies {
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'com.tealium:library:5.8.0'
implementation 'com.tealium:library:5.9.0'
implementation 'com.tealium:lifecycle:1.1.4'
}
2 changes: 1 addition & 1 deletion Modules/Location/LocationSample/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ dependencies {
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'

// Tealium dependencies
implementation 'com.tealium:library:5.8.0'
implementation 'com.tealium:library:5.9.0'
implementation 'com.tealium:location:1.0.0'

// Other required dependencies
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@

import com.tealium.internal.data.Dispatch;
import com.tealium.internal.listeners.WebViewLoadedListener;
import com.tealium.internal.tagbridge.RemoteCommand;
import com.tealium.library.DispatchValidator;
import com.tealium.library.Tealium;
import com.tealium.remotecommands.RemoteCommand;

import java.util.HashMap;
import java.util.Locale;
Expand Down
4 changes: 4 additions & 0 deletions Modules/RemoteCommands/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Tealium Remote Commands

## Documentation
Please see [Tealium Learning Community Article](https://docs.tealium.com/platforms/remote-commands/)
Binary file not shown.
2 changes: 1 addition & 1 deletion Samples/AndroidTVSample/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ dependencies {
implementation 'androidx.leanback:leanback:1.0.0'
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'com.github.bumptech.glide:glide:3.8.0'
implementation 'com.tealium:library:5.8.0'
implementation 'com.tealium:library:5.9.0'
implementation 'com.tealium:lifecycle:1.1.4'
}
2 changes: 1 addition & 1 deletion Samples/BlankApp+Tealium/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ android {
}

dependencies {
implementation 'com.tealium:library:5.8.0'
implementation 'com.tealium:library:5.9.0'
}
2 changes: 1 addition & 1 deletion Samples/ConsentManagerDemoApp/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ dependencies {
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation 'com.tealium:library:5.8.0'
implementation 'com.tealium:library:5.9.0'
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
import android.webkit.WebView;

import com.tealium.internal.data.Dispatch;
import com.tealium.internal.tagbridge.RemoteCommand;
import com.tealium.library.ConsentManager;
import com.tealium.library.DispatchValidator;
import com.tealium.library.Tealium;
import com.tealium.internal.listeners.WebViewLoadedListener;
import com.tealium.remotecommands.RemoteCommand;

import java.util.HashMap;
import java.util.HashSet;
Expand Down
2 changes: 1 addition & 1 deletion Samples/ExampleApp+Tealium/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ android {

dependencies {
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'com.tealium:library:5.8.0'
implementation 'com.tealium:library:5.9.0'
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,14 @@
import android.content.SharedPreferences;
import android.os.Build;
import android.util.Log;
import android.webkit.CookieManager;
import android.webkit.WebView;

import com.tealium.example.BuildConfig;
import com.tealium.internal.data.Dispatch;
import com.tealium.internal.listeners.WebViewCreatedListener;
import com.tealium.internal.listeners.WebViewLoadedListener;
import com.tealium.internal.tagbridge.RemoteCommand;
import com.tealium.library.DispatchValidator;
import com.tealium.library.Tealium;
import com.tealium.remotecommands.RemoteCommand;

import java.util.HashMap;
import java.util.Locale;
Expand Down
Binary file removed tealium-5.8.0.aar
Binary file not shown.
Binary file added tealium-5.9.0.aar
Binary file not shown.

0 comments on commit 824d298

Please sign in to comment.