Skip to content

Commit

Permalink
Release 5.9.4 (#94)
Browse files Browse the repository at this point in the history
* Release 5.9.4

* Update release aar

Co-authored-by: Karen Tamayo <[email protected]>
  • Loading branch information
tamayok and Karen Tamayo authored Oct 24, 2022
1 parent 1b21443 commit c2205ce
Show file tree
Hide file tree
Showing 19 changed files with 56 additions and 53 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# Change Log
- 5.9.4
- 'QueryParameterProvider' - allows additional parameters to be added to the URL used for the WebViewDispatcher
- 5.9.3
- Add `sessionCountingEnabled` to `Tealium.Config` to enable/disable session counting for TealiumIQ
- 5.9.2
Expand Down
8 changes: 4 additions & 4 deletions Modules/AndroidWear/WearSample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

buildscript {
repositories {
jcenter()
mavenCentral()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
classpath 'com.android.tools.build:gradle:3.2.0'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand All @@ -15,13 +15,13 @@ buildscript {

allprojects {
repositories {
jcenter()
mavenCentral()
flatDir {
dirs 'libs'
}

maven {
url "http://maven.tealiumiq.com/android/releases/"
url "https://maven.tealiumiq.com/android/releases/"
}
google()
}
Expand Down
3 changes: 2 additions & 1 deletion Modules/AndroidWear/WearSample/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
org.gradle.jvmargs=-Xmx1536m

android.useAndroidX=true
android.enableJetifier=true
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip
18 changes: 9 additions & 9 deletions Modules/AndroidWear/WearSample/mobile/build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 26
buildToolsVersion "26.0.3"
compileSdkVersion 30
buildToolsVersion "30.0.3"
defaultConfig {
applicationId "com.tealium.wearsample"
minSdkVersion 19
targetSdkVersion 26
targetSdkVersion 30
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
Expand All @@ -20,15 +20,15 @@ android {
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
implementation fileTree(dir: 'libs', include: ['*.jar'])
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
wearApp project(':wear')
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.9.3'
implementation 'com.google.android.gms:play-services-wearable:11.6.2'
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'com.tealium:library:5.9.4'
implementation(name:'tealium.mobile-5.0.0', ext:'aar')
testImplementation 'junit:junit:4.12'
}
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package com.tealium.wearsample;

import android.support.v7.app.AppCompatActivity;
import android.app.Activity;
import android.os.Bundle;

public class MainActivity extends AppCompatActivity {
public class MainActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
Expand Down
10 changes: 5 additions & 5 deletions Modules/AndroidWear/WearSample/wear/build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 26
buildToolsVersion "26.0.3"
compileSdkVersion 30
buildToolsVersion "30.0.3"
defaultConfig {
applicationId "com.tealium.wearsample"
minSdkVersion 20
targetSdkVersion 26
targetSdkVersion 30
versionCode 1
versionName "1.0"
}
Expand All @@ -20,8 +20,8 @@ android {

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.google.android.support:wearable:2.0.2'
implementation 'com.google.android.support:wearable:2.3.0'
implementation 'com.google.android.gms:play-services-wearable:10.2.6'
provided 'com.google.android.wearable:wearable:2.0.2'
compileOnly 'com.google.android.wearable:wearable:2.3.0'
implementation(name:'tealium.wear-5.0.0', ext:'aar')
}
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.9.3'
implementation 'com.tealium:library:5.9.4'
implementation 'com.tealium:lifecycle:1.1.5'
}
8 changes: 4 additions & 4 deletions Samples/AndroidTVSample/app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 29
buildToolsVersion '28.0.3'
compileSdkVersion 30
buildToolsVersion '30.0.3'
defaultConfig {
applicationId "com.teailium.androidtvsample"
minSdkVersion 21
targetSdkVersion 29
targetSdkVersion 30
versionCode 1
versionName "1.0"
}
Expand All @@ -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.9.3'
implementation 'com.tealium:library:5.9.4'
implementation 'com.tealium:lifecycle:1.1.5'
}
6 changes: 3 additions & 3 deletions Samples/AndroidTVSample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
buildscript {
repositories {
google()
jcenter()
mavenCentral()

}
dependencies {
Expand All @@ -17,9 +17,9 @@ buildscript {
allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven {
url "https://maven.tealiumiq.com/android/releases"
url "https://maven.tealiumiq.com/android/releases/"
}
}
}
Expand Down
8 changes: 4 additions & 4 deletions Samples/BlankApp+Tealium/app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 29
buildToolsVersion '29.0.1'
compileSdkVersion 30
buildToolsVersion '30.0.3'

defaultConfig {
applicationId "com.tealium.blankapp"
minSdkVersion 19
targetSdkVersion 29
targetSdkVersion 30
}

buildTypes {
Expand All @@ -19,5 +19,5 @@ android {
}

dependencies {
implementation 'com.tealium:library:5.9.3'
implementation 'com.tealium:library:5.9.4'
}
8 changes: 4 additions & 4 deletions Samples/BlankApp+Tealium/build.gradle
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
mavenCentral()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.1'
classpath 'com.android.tools.build:gradle:3.2.0'
}
}

allprojects {
repositories {
jcenter()
mavenCentral()
flatDir {
dirs 'libs'
}

maven {
url "http://maven.tealiumiq.com/android/releases/"
url "https://maven.tealiumiq.com/android/releases/"
}
google()
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip
8 changes: 4 additions & 4 deletions Samples/ConsentManagerDemoApp/app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 29
buildToolsVersion "29.0.1"
compileSdkVersion 30
buildToolsVersion "30.0.3"

defaultConfig {
applicationId "com.tealium.consentmanagerdemo"
minSdkVersion 19
targetSdkVersion 29
targetSdkVersion 30
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Expand All @@ -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.9.3'
implementation 'com.tealium:library:5.9.4'
}
6 changes: 3 additions & 3 deletions Samples/ConsentManagerDemoApp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {

repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.0'
Expand All @@ -18,9 +18,9 @@ buildscript {
allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven {
url "http://maven.tealiumiq.com/android/releases/"
url "https://maven.tealiumiq.com/android/releases/"
}
}
}
Expand Down
8 changes: 4 additions & 4 deletions Samples/ExampleApp+Tealium/app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 29
buildToolsVersion "29.0.1"
compileSdkVersion 30
buildToolsVersion "30.0.3"

defaultConfig {
applicationId "com.tealium.example"
minSdkVersion 19
targetSdkVersion 29
targetSdkVersion 30
}

buildTypes {
Expand All @@ -20,5 +20,5 @@ android {

dependencies {
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'com.tealium:library:5.9.3'
implementation 'com.tealium:library:5.9.4'
}
6 changes: 3 additions & 3 deletions Samples/ExampleApp+Tealium/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
mavenCentral()
google()
}
dependencies {
Expand All @@ -11,13 +11,13 @@ buildscript {

allprojects {
repositories {
jcenter()
mavenCentral()
flatDir {
dirs 'libs'
}

maven {
url "http://maven.tealiumiq.com/android/releases/"
url "https://maven.tealiumiq.com/android/releases/"
}
google()
}
Expand Down
Binary file removed tealium-5.9.3.aar
Binary file not shown.
Binary file added tealium-5.9.4.aar
Binary file not shown.

0 comments on commit c2205ce

Please sign in to comment.