Skip to content

Commit

Permalink
feat/Version 2.9.5
Browse files Browse the repository at this point in the history
  • Loading branch information
michaela-dev committed Jul 2, 2021
1 parent e2f7145 commit e2cbdf0
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 7 deletions.
10 changes: 10 additions & 0 deletions Documentation/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
## Release Notes
## Release Notes for 2.9.5
#### July 02, 2021
* Features
* Flexible event attributes in mobile push notifications. Custom tracking attributes added into push notification payload are automatically included in the events as properties.
* Bug Fixes
* Fixed: Session start is no longer tracked on anonymizing when automatic session tracking is off.
* Fixed: In-app message buttons with long text are no longer pushed outside the window.



## Release Notes for 2.9.4
#### May 28, 2021
* Features
Expand Down
2 changes: 1 addition & 1 deletion Guides/INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
2. Add ExponeaSDK dependency and sync your project
```groovy
dependencies {
implementation 'com.exponea.sdk:sdk:2.9.4'
implementation 'com.exponea.sdk:sdk:2.9.5'
}
```
3. After synchronization is complete, you can start using the SDK.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Download via Gradle:

```groovy
dependencies {
implementation 'com.exponea.sdk:sdk:2.9.4'
implementation 'com.exponea.sdk:sdk:2.9.5'
}
```

Expand All @@ -32,7 +32,7 @@ Download via Maven:
<dependency>
<groupId>com.exponea.sdk</groupId>
<artifactId>sdk</artifactId>
<version>2.9.4</version>
<version>2.9.5</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ android {
applicationId "com.exponea.example"
minSdkVersion 21
targetSdkVersion 27
versionCode 52
versionName "2.9.4"
versionCode 53
versionName "2.9.5"
vectorDrawables.useSupportLibrary = true
}
buildTypes {
Expand Down
4 changes: 2 additions & 2 deletions sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ android {
defaultConfig {
minSdkVersion 16
targetSdkVersion 27
buildConfigField "String", "EXPONEA_VERSION_NAME", '"2.9.4"'
buildConfigField "int", "EXPONEA_VERSION_CODE", "47"
buildConfigField "String", "EXPONEA_VERSION_NAME", '"2.9.5"'
buildConfigField "int", "EXPONEA_VERSION_CODE", "48"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles 'proguard-rules.pro'
}
Expand Down

0 comments on commit e2cbdf0

Please sign in to comment.