Skip to content

Commit

Permalink
feat/Version 3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adam1929 authored Oct 19, 2022
1 parent c0cdd64 commit 2f69c37
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 8 deletions.
10 changes: 10 additions & 0 deletions Documentation/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
## :arrow_double_up: [SDK version update guide](./../Guides/VERSION_UPDATE.md)

## Release Notes
## Release Notes for 3.2.0
#### October 19, 2022
* Features
* Added feature to handle tracking consent according to DSGVO/GDPR
* Guiding documentation added for Push notification update after certain circumstances
* Bug Fixes
* Fixed: License established to MIT
* Fixed: Documentation for Push token retrieval shows FirebaseMessaging usage


## Release Notes for 3.1.0
#### August 09, 2022
* 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:3.1.0'
implementation 'com.exponea.sdk:sdk:3.2.0'
}
```
3. After synchronization is complete, you can start using the SDK.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

### Specs
[![API](https://img.shields.io/badge/API-14%2B-yellow.svg?style=flat)](https://android-arsenal.com/api?level=14)
[![License](https://img.shields.io/badge/License-Apache%202.0-yellow.svg)](https://opensource.org/licenses/Apache-2.0)
[![License](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

## Exponea Android SDK

Expand All @@ -22,7 +22,7 @@ Download via Gradle:

```groovy
dependencies {
implementation 'com.exponea.sdk:sdk:3.1.0'
implementation 'com.exponea.sdk:sdk:3.2.0'
}
```

Expand All @@ -32,7 +32,7 @@ Download via Maven:
<dependency>
<groupId>com.exponea.sdk</groupId>
<artifactId>sdk</artifactId>
<version>3.1.0</version>
<version>3.2.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 63
versionName "3.1.0"
versionCode 64
versionName "3.2.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", '"3.1.0"'
buildConfigField "int", "EXPONEA_VERSION_CODE", "58"
buildConfigField "String", "EXPONEA_VERSION_NAME", '"3.2.0"'
buildConfigField "int", "EXPONEA_VERSION_CODE", "59"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles 'proguard-rules.pro'
}
Expand Down

0 comments on commit 2f69c37

Please sign in to comment.