Skip to content

Commit 3655527

Browse files
authored
[MOB-2376] Prepare for 3.2.9 (#290)
[MOB-2376] Prepare for 3.2.9
2 parents fa7a5af + ceac8f9 commit 3655527

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,15 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1515
#### Fixed
1616
- nothing yet
1717

18+
## [3.2.9](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.2.9)
19+
#### Added
20+
- Added support for delayed initialization of the SDK. While we still recommend calling `IterableApi.initialize` in `Application#onCreate`, apps initializing the Iterable SDK later should now work properly with push actions and background push notifications without issues.
21+
22+
#### Fixed
23+
- Fixed `IllegalStateException` crash in `IterableInAppFragmentHTMLNotification` by adding safety checks before dismissing the in-app dialog.
24+
- Fixed a crash in the in-app dialog that could occur in some cases when the device is rotated while the in-app dialog is beginning to load.
25+
- Fixed a crash in `IterablePushActionReceiver` when `extras` are `null`. This was only happening in automated analysis tools and not in production, but was nevertheless showing up in crash reports.
26+
1827
## [3.2.8](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.2.8)
1928
#### Added
2029
- Added support for in-app animations. Select the checkbox to use preset animations when creating a template to see this feature in action.

iterableapi-ui/build.gradle

Lines changed: 1 addition & 1 deletion
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.8'
55+
libraryVersion = '3.2.9'
5656

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

iterableapi/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ android {
1010
minSdkVersion 15
1111
targetSdkVersion 27
1212

13-
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.2.8\""
13+
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.2.9\""
1414

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

74-
libraryVersion = '3.2.8'
74+
libraryVersion = '3.2.9'
7575

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

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

Lines changed: 2 additions & 2 deletions
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.8'
37-
implementation 'com.iterable:iterableapi-ui:3.2.8'
36+
implementation 'com.iterable:iterableapi:3.2.9'
37+
implementation 'com.iterable:iterableapi-ui:3.2.9'
3838
implementation 'com.squareup.okhttp3:mockwebserver:4.2.2'
3939

4040
testImplementation 'junit:junit:4.12'

0 commit comments

Comments
 (0)