Skip to content

Commit 150999c

Browse files
authored
feat/Version 4.0.1
1 parent 83ded52 commit 150999c

File tree

5 files changed

+21
-10
lines changed

5 files changed

+21
-10
lines changed

Documentation/release-notes.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,17 @@ parentDocSlug: android-sdk
1111
> Refer to the [SDK version update guide](https://documentation.bloomreach.com/engagement/docs/android-sdk-version-update) for details on updating to the next major version.
1212
1313
## Release Notes
14+
## Release Notes for 4.0.1
15+
#### October 11, 2024
16+
* Added:
17+
* Adds several minor documentation improvements.
18+
* Fixed:
19+
* Fixes invalid cookie parameter sending for fetch segments.
20+
* Fixes missing item in version 4.0.0 release notes.
21+
* Fixes incorrect Segmentation API category type in documentation from merchandise to merchandising.
22+
* Fixes triggering of segments fetch for PUSH token track.
23+
24+
1425
## Release Notes for 4.0.0
1526
#### September 25, 2024
1627
* Added:

Documentation/setup.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ The Exponea Android SDK can be installed or updated using [Gradle](https://gradl
1818

1919
1. In your app's `build.gradle.kts` file, add `com.exponea.sdk:sdk` inside the `dependencies { }` section:
2020
```kotlin
21-
implementation("com.exponea.sdk:sdk:4.0.0")
21+
implementation("com.exponea.sdk:sdk:4.0.1")
2222
```
2323
2. Rebuild your project (`Build` > `Rebuild Project`).
2424

2525
### Gradle (Groovy)
2626

2727
1. In your app's `build.gradle` file, add `com.exponea.sdk:sdk` inside the `dependencies { }` section:
2828
```groovy
29-
implementation 'com.exponea.sdk:sdk:4.0.0'
29+
implementation 'com.exponea.sdk:sdk:4.0.1'
3030
```
3131
2. Rebuild your project (`Build` > `Rebuild Project`).
3232

@@ -37,7 +37,7 @@ The Exponea Android SDK can be installed or updated using [Gradle](https://gradl
3737
<dependency>
3838
<groupId>com.exponea.sdk</groupId>
3939
<artifactId>sdk</artifactId>
40-
<version>4.0.0</version>
40+
<version>4.0.1</version>
4141
</dependency>
4242
```
4343
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
200200

201201
```
202202
Manifest merger failed : Attribute application@fullBackupContent value=(@xml/backup_rules) from AndroidManifest.xml:8:9-54
203-
is also present at [com.exponea.sdk:sdk:4.0.0] AndroidManifest.xml:15:9-70 value=(@xml/exponea_default_backup_rules).
203+
is also present at [com.exponea.sdk:sdk:4.0.1] AndroidManifest.xml:15:9-70 value=(@xml/exponea_default_backup_rules).
204204
```
205205

206206
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.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Download via Gradle:
2525

2626
```groovy
2727
dependencies {
28-
implementation 'com.exponea.sdk:sdk:4.0.0'
28+
implementation 'com.exponea.sdk:sdk:4.0.1'
2929
}
3030
```
3131

@@ -35,7 +35,7 @@ Download via Maven:
3535
<dependency>
3636
<groupId>com.exponea.sdk</groupId>
3737
<artifactId>sdk</artifactId>
38-
<version>4.0.0</version>
38+
<version>4.0.1</version>
3939
</dependency>
4040
```
4141

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ android {
1515
minSdkVersion 21
1616
targetSdkVersion 34
1717
compileSdk 34
18-
versionCode 85
19-
versionName "4.0.0"
18+
versionCode 86
19+
versionName "4.0.1"
2020
vectorDrawables.useSupportLibrary = true
2121
}
2222
compileOptions {

sdk/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ android {
1212
minSdkVersion 17
1313
targetSdkVersion 34
1414
compileSdk 34
15-
buildConfigField "String", "EXPONEA_VERSION_NAME", '"4.0.0"'
16-
buildConfigField "int", "EXPONEA_VERSION_CODE", "80"
15+
buildConfigField "String", "EXPONEA_VERSION_NAME", '"4.0.1"'
16+
buildConfigField "int", "EXPONEA_VERSION_CODE", "81"
1717
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1818
consumerProguardFiles 'proguard-rules.pro'
1919
}

0 commit comments

Comments
 (0)