Skip to content

Commit

Permalink
feat/Version 2.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wassil committed Mar 24, 2020
1 parent 3d57182 commit e79fb63
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 8 deletions.
10 changes: 9 additions & 1 deletion Documentation/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
## Release Notes
## Release Notes for 2.7.1
#### March 24, 2020
* Features
* Push notification accent color setting - you can now set ExponeaConfiguration property `pushAccentColor` to change color of push notification title and buttons.
* Improved documentation on handling push notifications and flushing setup.
* Bug Fixes
* Fixed: Occasional crash during in-app message preload.
* Fixed: Push notifications deeplinking issue. In some rare cases, push notification with deeplink would not open correctly.

## Release Notes for 2.7.0
#### March 02, 2020
* Features
* New in-app messages - display rich messages when app starts or an event is tracked - even when offline. This SDK is fully ready for the feature when it is publicly available soon.
* Bug Fixes
* Fixed: Rare internal database thread-safety related crash.


## Release Notes for 2.6.3
#### February 20, 2020
* Features
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.7.0'
implementation 'com.exponea.sdk:sdk:2.7.1'
}
```

Expand All @@ -32,7 +32,7 @@ Download via Maven:
<dependency>
<groupId>com.exponea.sdk</groupId>
<artifactId>sdk</artifactId>
<version>2.7.0</version>
<version>2.7.1</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 @@ -8,8 +8,8 @@ android {
applicationId "com.exponea.example"
minSdkVersion 21
targetSdkVersion 27
versionCode 39
versionName "2.7.0"
versionCode 40
versionName "2.7.1"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

vectorDrawables.useSupportLibrary = true
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 34
versionName "2.7.0"
versionCode 35
versionName "2.7.1"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles 'proguard-rules.pro'
}
Expand Down
2 changes: 1 addition & 1 deletion sdk/maven-push.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ allprojects { ext."signing.password" = System.getenv('password') }

// Artifact settings
def _group = 'com.exponea.sdk'
def _version = '2.7.0'
def _version = '2.7.1'
def _archivesBaseName = 'sdk'

def _name = 'Exponea Sdk Library '
Expand Down

0 comments on commit e79fb63

Please sign in to comment.