Skip to content

Commit

Permalink
feat/Version 3.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
adam1929 authored Jan 11, 2024
1 parent 132204a commit 004c2c8
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 7 deletions.
6 changes: 6 additions & 0 deletions Documentation/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
## :arrow_double_up: [SDK version update guide](./../Guides/VERSION_UPDATE.md)

## Release Notes
## Release Notes for 3.11.2
#### January 11, 2024
* Bug Fixes
* Fixed: Invoking of In-app content blocks behaviour callback from outside is not reflected to local flags about showing and interaction


## Release Notes for 3.11.1
#### December 23, 2023
* Bug Fixes
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.11.1'
implementation 'com.exponea.sdk:sdk:3.11.2'
}
```
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:3.11.1'
implementation 'com.exponea.sdk:sdk:3.11.2'
}
```

Expand All @@ -32,7 +32,7 @@ Download via Maven:
<dependency>
<groupId>com.exponea.sdk</groupId>
<artifactId>sdk</artifactId>
<version>3.11.1</version>
<version>3.11.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 @@ -15,8 +15,8 @@ android {
applicationId "com.exponea.example"
minSdkVersion 21
targetSdkVersion 33
versionCode 77
versionName "3.11.1"
versionCode 78
versionName "3.11.2"
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 @@ -11,8 +11,8 @@ android {
defaultConfig {
minSdkVersion 17
targetSdkVersion 33
buildConfigField "String", "EXPONEA_VERSION_NAME", '"3.11.1"'
buildConfigField "int", "EXPONEA_VERSION_CODE", "72"
buildConfigField "String", "EXPONEA_VERSION_NAME", '"3.11.2"'
buildConfigField "int", "EXPONEA_VERSION_CODE", "73"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles 'proguard-rules.pro'
}
Expand Down

0 comments on commit 004c2c8

Please sign in to comment.