Skip to content

Commit

Permalink
feat/Version 2.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
wassil committed Apr 9, 2020
1 parent 12ad444 commit cd3310c
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.7.2
#### April 09, 2020
* Features
* Switching projects in `anonymize()` method. If you need to switch projects, you can use `anonymize()` method to create a new customer and start fresh tracking into a new project. Please see [ANONYMIZE.md](./ANONYMIZE.md) for more information.
* Bug Fixes
* Fixed: When the app was opened from a push notifications, in-app messages would not initialize properly and would not show until the app is restarted.
* Fixed: When the SDK was initialized with the application context instead of the activity context, in-app messages would not show properly.
* Fixed: Tracking to multiple projects. It now requires both project token and authorization token. Please see [PROJECT_MAPPING.md](./PROJECT_MAPPING.md).


## Release Notes for 2.7.1
#### March 24, 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.1'
implementation 'com.exponea.sdk:sdk:2.7.2'
}
```

Expand All @@ -32,7 +32,7 @@ Download via Maven:
<dependency>
<groupId>com.exponea.sdk</groupId>
<artifactId>sdk</artifactId>
<version>2.7.1</version>
<version>2.7.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 @@ -8,8 +8,8 @@ android {
applicationId "com.exponea.example"
minSdkVersion 21
targetSdkVersion 27
versionCode 40
versionName "2.7.1"
versionCode 41
versionName "2.7.2"
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 35
versionName "2.7.1"
versionCode 36
versionName "2.7.2"
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.1'
def _version = '2.7.2'
def _archivesBaseName = 'sdk'

def _name = 'Exponea Sdk Library '
Expand Down

0 comments on commit cd3310c

Please sign in to comment.