Skip to content

Commit eb4a4f4

Browse files
authored
feat/Version 5.1.0
1 parent e70d803 commit eb4a4f4

5 files changed

Lines changed: 18 additions & 10 deletions

File tree

Documentation/release-notes.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,14 @@ content:
1414
> Refer to the [Android SDK version update guide](https://documentation.bloomreach.com/engagement/docs/android-sdk-version-update) for details on updating to the next major version.
1515
1616
## Release Notes
17+
## Release Notes for 5.1.0
18+
#### April 27, 2026
19+
* Added:
20+
* Adds missing device properties to `notification_state` event.
21+
* Fixed:
22+
* Fixes documentation to clarify `anonymize`/`stopIntegration` guidance and push token re-tracking.
23+
24+
1725
## Release Notes for 5.0.0
1826
#### April 13, 2026
1927
* Added:

Documentation/setup.md

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

2222
1. In your app's `build.gradle.kts` file, add `com.exponea.sdk:sdk` inside the `dependencies { }` section:
2323
```kotlin
24-
implementation("com.exponea.sdk:sdk:5.0.0")
24+
implementation("com.exponea.sdk:sdk:5.1.0")
2525
```
2626
2. Rebuild your project (`Build` > `Rebuild Project`).
2727

2828
### Gradle (Groovy)
2929

3030
1. In your app's `build.gradle` file, add `com.exponea.sdk:sdk` inside the `dependencies { }` section:
3131
```groovy
32-
implementation 'com.exponea.sdk:sdk:5.0.0'
32+
implementation 'com.exponea.sdk:sdk:5.1.0'
3333
```
3434
2. Rebuild your project (`Build` > `Rebuild Project`).
3535

@@ -40,7 +40,7 @@ The Exponea Android SDK can be installed or updated using [Gradle](https://gradl
4040
<dependency>
4141
<groupId>com.exponea.sdk</groupId>
4242
<artifactId>sdk</artifactId>
43-
<version>5.0.0</version>
43+
<version>5.1.0</version>
4444
</dependency>
4545
```
4646
2. Rebuild your app with Maven.
@@ -275,7 +275,7 @@ You may get a build error similar to the following, especially in a default new
275275

276276
```
277277
Manifest merger failed : Attribute application@fullBackupContent value=(@xml/backup_rules) from AndroidManifest.xml:8:9-54
278-
is also present at [com.exponea.sdk:sdk:5.0.0] AndroidManifest.xml:15:9-70 value=(@xml/exponea_default_backup_rules).
278+
is also present at [com.exponea.sdk:sdk:5.1.0] AndroidManifest.xml:15:9-70 value=(@xml/exponea_default_backup_rules).
279279
```
280280

281281
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:5.0.0'
28+
implementation 'com.exponea.sdk:sdk:5.1.0'
2929
}
3030
```
3131

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

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ android {
1717
minSdkVersion 21
1818
targetSdkVersion 35
1919
compileSdk 35
20-
versionCode 99
21-
versionName "5.0.0"
20+
versionCode 100
21+
versionName "5.1.0"
2222
vectorDrawables.useSupportLibrary = true
2323
}
2424
compileOptions {

sdk/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ android {
1919
minSdkVersion 21
2020
targetSdkVersion 35
2121
compileSdk 35
22-
buildConfigField "String", "EXPONEA_VERSION_NAME", '"5.0.0"'
23-
buildConfigField "int", "EXPONEA_VERSION_CODE", "94"
22+
buildConfigField "String", "EXPONEA_VERSION_NAME", '"5.1.0"'
23+
buildConfigField "int", "EXPONEA_VERSION_CODE", "95"
2424
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2525
consumerProguardFiles 'proguard-rules.pro'
2626
}

0 commit comments

Comments
 (0)