Skip to content

Commit a6e54c0

Browse files
authored
feat/Version 4.8.0
1 parent fea4012 commit a6e54c0

5 files changed

Lines changed: 16 additions & 10 deletions

File tree

Documentation/release-notes.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ 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.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.
18+
19+
1420
## Release Notes for 4.7.0
1521
#### October 23, 2025
1622
* 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.7.0")
21+
implementation("com.exponea.sdk:sdk:4.8.0")
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.7.0'
29+
implementation 'com.exponea.sdk:sdk:4.8.0'
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.7.0</version>
40+
<version>4.8.0</version>
4141
</dependency>
4242
```
4343
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
227227

228228
```
229229
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).
231231
```
232232

233233
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.7.0'
28+
implementation 'com.exponea.sdk:sdk:4.8.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>4.7.0</version>
38+
<version>4.8.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 94
21-
versionName "4.7.0"
20+
versionCode 95
21+
versionName "4.8.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 17
2020
targetSdkVersion 35
2121
compileSdk 35
22-
buildConfigField "String", "EXPONEA_VERSION_NAME", '"4.7.0"'
23-
buildConfigField "int", "EXPONEA_VERSION_CODE", "89"
22+
buildConfigField "String", "EXPONEA_VERSION_NAME", '"4.8.0"'
23+
buildConfigField "int", "EXPONEA_VERSION_CODE", "90"
2424
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2525
consumerProguardFiles 'proguard-rules.pro'
2626
testBuildType "unitTesting"

0 commit comments

Comments
 (0)