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
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,12 @@ parentDocSlug: android-sdk
11
11
> 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.
12
12
13
13
## Release Notes
14
+
## Release Notes for 4.8.0
15
+
#### November 13, 2025
16
+
* Added:
17
+
* Documents [major push notification updates](https://documentation.bloomreach.com/engagement/docs/android-sdk-version-update#update-to-version-460-or-higher): `notification_state` event as a new token tracking method, Application ID configuration, and migration requirements for the Multiple mobile apps feature.
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
@@ -18,15 +18,15 @@ The Exponea Android SDK can be installed or updated using [Gradle](https://gradl
18
18
19
19
1. In your app's `build.gradle.kts` file, add `com.exponea.sdk:sdk` inside the `dependencies { }` section:
20
20
```kotlin
21
-
implementation("com.exponea.sdk:sdk:4.7.0")
21
+
implementation("com.exponea.sdk:sdk:4.8.0")
22
22
```
23
23
2. Rebuild your project (`Build` > `Rebuild Project`).
24
24
25
25
### Gradle (Groovy)
26
26
27
27
1. In your app's `build.gradle` file, add `com.exponea.sdk:sdk` inside the `dependencies { }` section:
28
28
```groovy
29
-
implementation 'com.exponea.sdk:sdk:4.7.0'
29
+
implementation 'com.exponea.sdk:sdk:4.8.0'
30
30
```
31
31
2. Rebuild your project (`Build` > `Rebuild Project`).
32
32
@@ -37,7 +37,7 @@ The Exponea Android SDK can be installed or updated using [Gradle](https://gradl
37
37
<dependency>
38
38
<groupId>com.exponea.sdk</groupId>
39
39
<artifactId>sdk</artifactId>
40
-
<version>4.7.0</version>
40
+
<version>4.8.0</version>
41
41
</dependency>
42
42
```
43
43
2. Rebuild your app with Maven.
@@ -227,7 +227,7 @@ You may get a build error similar to the following, especially in a default new
227
227
228
228
```
229
229
Manifest merger failed : Attribute application@fullBackupContent value=(@xml/backup_rules) from AndroidManifest.xml:8:9-54
230
-
is also present at [com.exponea.sdk:sdk:4.7.0] AndroidManifest.xml:15:9-70 value=(@xml/exponea_default_backup_rules).
230
+
is also present at [com.exponea.sdk:sdk:4.8.0] AndroidManifest.xml:15:9-70 value=(@xml/exponea_default_backup_rules).
231
231
```
232
232
233
233
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