Skip to content

Commit

Permalink
feat/Version 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
michaela-dev committed Jan 4, 2022
1 parent a01b18c commit 83667ff
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 7 deletions.
12 changes: 12 additions & 0 deletions Documentation/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
## Release Notes
## Release Notes for 3.0.0
#### January 04, 2022
* Features
* Huawei push notifications support
* Changes regarding Android S - Notification trampolining removed, androidx.work:work-runtime library updated, exported attribute added where necessary
* Bug Fixes
* Fixed: In-Apps caching fixed - Images with the same URL are downloaded only once
* Fixed: In-Apps fetching fixed - In-app messages are no longer fetched when push notification auto initializes the SDK. In-apps are fetched only after the app is started
* Fixed: Notification sound file name can be now specified with the extension
* Fixed: Inconsistency with iOS SDK - Added platform attribute for a banner event, send banner type propery value in lower case


## Release Notes for 2.9.7
#### November 05, 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.7'
implementation 'com.exponea.sdk:sdk:3.0.0'
}
```
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.7'
implementation 'com.exponea.sdk:sdk:3.0.0'
}
```

Expand All @@ -32,7 +32,7 @@ Download via Maven:
<dependency>
<groupId>com.exponea.sdk</groupId>
<artifactId>sdk</artifactId>
<version>2.9.7</version>
<version>3.0.0</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 @@ -15,8 +15,8 @@ android {
applicationId "com.exponea.example"
minSdkVersion 21
targetSdkVersion 31
versionCode 55
versionName "2.9.7"
versionCode 56
versionName "3.0.0"
vectorDrawables.useSupportLibrary = true
}
compileOptions {
Expand Down
4 changes: 2 additions & 2 deletions sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ android {
defaultConfig {
minSdkVersion 17
targetSdkVersion 27
buildConfigField "String", "EXPONEA_VERSION_NAME", '"2.9.7"'
buildConfigField "int", "EXPONEA_VERSION_CODE", "50"
buildConfigField "String", "EXPONEA_VERSION_NAME", '"3.0.0"'
buildConfigField "int", "EXPONEA_VERSION_CODE", "51"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles 'proguard-rules.pro'
}
Expand Down

0 comments on commit 83667ff

Please sign in to comment.