Skip to content

Commit

Permalink
feat/Version 2.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
wassil committed Sep 9, 2020
1 parent 13b2dd7 commit b178b1d
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 7 deletions.
11 changes: 11 additions & 0 deletions Documentation/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
## Release Notes
## Release Notes for 2.8.2
#### September 09, 2020
* Features
* Default properties that are tracked with every event can be changed at runtime by setting `Exponea.defaultProperties` property.
* In-app messages definitions are re-downloaded every time the customer is identified. After customer identification, the set of in-app messages available for the customer may change due to targeting.

* Bug Fixes
* Fixed: Notification sound was played when the app notifications were disabled or the notification channel was muted. SDK now respects these settings + “Do not disturb” setting.
* Fixed: When the SDK was initialized with activity context, this context was stored causing memory leak - the activity could not be garbage collected. The SDK now only stores application context.


## Release Notes for 2.8.1
#### August 07, 2020
* 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.8.1'
implementation 'com.exponea.sdk:sdk:2.8.2'
}
```
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.8.1'
implementation 'com.exponea.sdk:sdk:2.8.2'
}
```

Expand All @@ -32,7 +32,7 @@ Download via Maven:
<dependency>
<groupId>com.exponea.sdk</groupId>
<artifactId>sdk</artifactId>
<version>2.8.1</version>
<version>2.8.2</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 45
versionName "2.8.1"
versionCode 46
versionName "2.8.2"
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
versionCode 40
versionName "2.8.1"
versionCode 41
versionName "2.8.2"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles 'proguard-rules.pro'
}
Expand Down

0 comments on commit b178b1d

Please sign in to comment.