From b7a3e832ff0f8d990226c76b8ecf51c55c69db87 Mon Sep 17 00:00:00 2001 From: adam1929 <103995671+adam1929@users.noreply.github.com> Date: Mon, 13 May 2024 15:21:44 +0200 Subject: [PATCH] feat/Version 3.14.0 --- Documentation/release-notes.md | 9 +++++++++ Documentation/setup.md | 8 ++++---- README.md | 4 ++-- app/build.gradle | 4 ++-- sdk/build.gradle | 4 ++-- 5 files changed, 19 insertions(+), 10 deletions(-) diff --git a/Documentation/release-notes.md b/Documentation/release-notes.md index e592bd69..c9f97bf8 100644 --- a/Documentation/release-notes.md +++ b/Documentation/release-notes.md @@ -11,6 +11,15 @@ parentDocSlug: android-sdk > Refer to the [SDK version update guide](https://documentation.bloomreach.com/engagement/docs/android-sdk-version-update) for details on updating from version 2.x.x to 3.x.x. ## Release Notes +## Release Notes for 3.14.0 +#### May 13, 2024 +* Features + * Introducing SDK documentation 2.0 + * Added support for Android API 34 +* Bug Fixes + * Fixed: Track events has been storing in UI thread that violates StrictMode policy + + ## Release Notes for 3.13.1 #### April 25, 2024 * Bug Fixes diff --git a/Documentation/setup.md b/Documentation/setup.md index f12d765e..9033e250 100644 --- a/Documentation/setup.md +++ b/Documentation/setup.md @@ -18,7 +18,7 @@ The Exponea Android SDK can be installed or updated using [Gradle](https://gradl 1. In your app's `build.gradle.kts` file, add `com.exponea.sdk:sdk` inside the `dependencies { }` section: ```kotlin - implementation("com.exponea.sdk:sdk:3.12.0") + implementation("com.exponea.sdk:sdk:3.14.0") ``` 2. Rebuild your project (`Build` > `Rebuild Project`). @@ -26,7 +26,7 @@ The Exponea Android SDK can be installed or updated using [Gradle](https://gradl 1. In your app's `build.gradle` file, add `com.exponea.sdk:sdk` inside the `dependencies { }` section: ```groovy - implementation 'com.exponea.sdk:sdk:3.12.0' + implementation 'com.exponea.sdk:sdk:3.14.0' ``` 2. Rebuild your project (`Build` > `Rebuild Project`). @@ -37,7 +37,7 @@ The Exponea Android SDK can be installed or updated using [Gradle](https://gradl com.exponea.sdk sdk - 3.12.0 + 3.14.0 ``` 2. Rebuild your app with Maven. @@ -200,7 +200,7 @@ You may get a build error similar to the following, especially in a default new ``` Manifest merger failed : Attribute application@fullBackupContent value=(@xml/backup_rules) from AndroidManifest.xml:8:9-54 - is also present at [com.exponea.sdk:sdk:3.12.0] AndroidManifest.xml:15:9-70 value=(@xml/exponea_default_backup_rules). + is also present at [com.exponea.sdk:sdk:3.14.0] AndroidManifest.xml:15:9-70 value=(@xml/exponea_default_backup_rules). ``` The SDK and the new app generated by Android Studio both enable the [auto backup feature](https://developer.android.com/guide/topics/data/autobackup) in `AndroidManifest.xml` but each with their own backup rules. It is up to you as a developer to [manage the manifest files](https://developer.android.com/build/manage-manifests) and ensure they can be merged properly. diff --git a/README.md b/README.md index 75752188..5a8732c5 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Download via Gradle: ```groovy dependencies { - implementation 'com.exponea.sdk:sdk:3.13.1' + implementation 'com.exponea.sdk:sdk:3.14.0' } ``` @@ -35,7 +35,7 @@ Download via Maven: com.exponea.sdk sdk - 3.13.1 + 3.14.0 ``` diff --git a/app/build.gradle b/app/build.gradle index 5208ee9b..0e462cb2 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -15,8 +15,8 @@ android { minSdkVersion 21 targetSdkVersion 34 compileSdk 34 - versionCode 81 - versionName "3.13.1" + versionCode 82 + versionName "3.14.0" vectorDrawables.useSupportLibrary = true } compileOptions { diff --git a/sdk/build.gradle b/sdk/build.gradle index 34dba842..a40f96af 100644 --- a/sdk/build.gradle +++ b/sdk/build.gradle @@ -11,8 +11,8 @@ android { minSdkVersion 17 targetSdkVersion 34 compileSdk 34 - buildConfigField "String", "EXPONEA_VERSION_NAME", '"3.13.1"' - buildConfigField "int", "EXPONEA_VERSION_CODE", "76" + buildConfigField "String", "EXPONEA_VERSION_NAME", '"3.14.0"' + buildConfigField "int", "EXPONEA_VERSION_CODE", "77" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" consumerProguardFiles 'proguard-rules.pro' }