Skip to content

Commit

Permalink
feat/Version 2.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Igi4 committed Apr 21, 2021
1 parent c705377 commit 1154ad9
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 10 deletions.
9 changes: 6 additions & 3 deletions Documentation/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
## Release Notes
## Release Notes for 2.9.2
#### March 02, 2021
## Release Notes for 2.9.3
#### April 21, 2021
* Features
* Push notifications events are now chronologically synced (the event with status `sent` always occurs before the event with status `delivered`).
* Bug Fixes
* Fixed: The SDK would not compile when using gradle build tools version 4.X.X.
* Fixed: The Exponea Android SDK no longer depends on version properties in BuildConfig class as they are no longer available since Gradle Plugin 4.1.
* Fixed: In-app messages with A/B testing now properly handle the control group.


## Release Notes for 2.9.1
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.2'
implementation 'com.exponea.sdk:sdk:2.9.3'
}
```
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.2'
implementation 'com.exponea.sdk:sdk:2.9.3'
}
```

Expand All @@ -32,7 +32,7 @@ Download via Maven:
<dependency>
<groupId>com.exponea.sdk</groupId>
<artifactId>sdk</artifactId>
<version>2.9.2</version>
<version>2.9.3</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 50
versionName "2.9.2"
versionCode 51
versionName "2.9.3"
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.2"'
buildConfigField "int", "EXPONEA_VERSION_CODE", "45"
buildConfigField "String", "EXPONEA_VERSION_NAME", '"2.9.3"'
buildConfigField "int", "EXPONEA_VERSION_CODE", "46"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles 'proguard-rules.pro'
}
Expand Down

0 comments on commit 1154ad9

Please sign in to comment.