You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Documentation/release-notes.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,14 @@ content:
14
14
> 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.
15
15
16
16
## 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.
Copy file name to clipboardExpand all lines: Documentation/setup.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,15 +21,15 @@ The Exponea Android SDK can be installed or updated using [Gradle](https://gradl
21
21
22
22
1. In your app's `build.gradle.kts` file, add `com.exponea.sdk:sdk` inside the `dependencies { }` section:
23
23
```kotlin
24
-
implementation("com.exponea.sdk:sdk:5.0.0")
24
+
implementation("com.exponea.sdk:sdk:5.1.0")
25
25
```
26
26
2. Rebuild your project (`Build` > `Rebuild Project`).
27
27
28
28
### Gradle (Groovy)
29
29
30
30
1. In your app's `build.gradle` file, add `com.exponea.sdk:sdk` inside the `dependencies { }` section:
31
31
```groovy
32
-
implementation 'com.exponea.sdk:sdk:5.0.0'
32
+
implementation 'com.exponea.sdk:sdk:5.1.0'
33
33
```
34
34
2. Rebuild your project (`Build` > `Rebuild Project`).
35
35
@@ -40,7 +40,7 @@ The Exponea Android SDK can be installed or updated using [Gradle](https://gradl
40
40
<dependency>
41
41
<groupId>com.exponea.sdk</groupId>
42
42
<artifactId>sdk</artifactId>
43
-
<version>5.0.0</version>
43
+
<version>5.1.0</version>
44
44
</dependency>
45
45
```
46
46
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
275
275
276
276
```
277
277
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).
279
279
```
280
280
281
281
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.
0 commit comments