Skip to content

Commit 55f4dbf

Browse files
authored
Merge pull request #232 from Iterable/MOB-1567-Release-SDK-3.2.3
Prepare for 3.2.3
2 parents 3c4447e + fdc9f29 commit 55f4dbf

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,13 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1515
#### Fixed
1616
- nothing yet
1717

18+
## [3.2.3](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.2.3)
19+
#### Added
20+
- `IterableInAppMessage` now stores the `campaignId` it belongs to. (Thanks to @nkotula!)
21+
22+
#### Changed
23+
- The SDK now uses `DialogFragment` to show in-app messages. In-app messages are more stable than before and resilient to device configuration changes like device rotation.
24+
1825
## [3.2.2](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.2.2)
1926
#### Fixed
2027
- Fixed an ArrayIndexOutOfBoundsException in IterableRequest which is thrown from inside HttpUrlConnection/OkHttp module in certain Android firmwares

iterableapi-ui/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ ext {
5252
siteUrl = 'https://github.com/Iterable/iterable-android-sdk'
5353
gitUrl = 'https://github.com/Iterable/iterable-android-sdk.git'
5454

55-
libraryVersion = '3.2.2'
55+
libraryVersion = '3.2.3'
5656

5757
developerId = 'davidtruong'
5858
developerName = 'David Truong'

iterableapi/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ android {
99
minSdkVersion 15
1010
targetSdkVersion 27
1111

12-
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.2.2\""
12+
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.2.3\""
1313

1414
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1515
}
@@ -70,7 +70,7 @@ ext {
7070
siteUrl = 'https://github.com/Iterable/iterable-android-sdk'
7171
gitUrl = 'https://github.com/Iterable/iterable-android-sdk.git'
7272

73-
libraryVersion = '3.2.2'
73+
libraryVersion = '3.2.3'
7474

7575
developerId = 'davidtruong'
7676
developerName = 'David Truong'

sample-apps/inbox-customization/app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ dependencies {
3333
implementation 'androidx.navigation:navigation-ui-ktx:2.1.0'
3434
implementation 'com.google.android.material:material:1.1.0'
3535

36-
implementation 'com.iterable:iterableapi:3.2.2'
37-
implementation 'com.iterable:iterableapi-ui:3.2.2'
36+
implementation 'com.iterable:iterableapi:3.2.3'
37+
implementation 'com.iterable:iterableapi-ui:3.2.3'
3838
implementation 'com.squareup.okhttp3:mockwebserver:4.2.2'
3939

4040
testImplementation 'junit:junit:4.12'

0 commit comments

Comments
 (0)