Skip to content

Commit e675f1a

Browse files
committed
Prepare for 3.0.9
1 parent 017c79b commit e675f1a

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

CHANGELOG.md

+9
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.0.9](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.0.9)
19+
#### Changed
20+
- The SDK now passes `preferUserId` flag to create a user by userId if it does not exist when using userId to identify the user
21+
- Incresed the deep link timeout to 3 seconds
22+
23+
#### Fixed
24+
- Fixed InAppClick event parameter to properly track the URL that was clicked
25+
- Fixed a NullPointerException when an in-app message was being shown while the app was in background
26+
1827
## [3.0.8](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.0.8)
1928
#### Added
2029
- Added an option to specify notification channel name via manifest metadata (`iterable_notification_channel_name`)

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Congratulations, you've configured your mobile application to receive push notif
3232
Add the following dependencies to your application's `build.gradle`:
3333

3434
```groovy
35-
compile 'com.iterable:iterableapi:3.0.8'
35+
compile 'com.iterable:iterableapi:3.0.9'
3636
compile 'com.google.firebase:firebase-messaging:X.X.X' // Min version 9.0.0
3737
```
3838

iterableapi/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ android {
99
minSdkVersion 15
1010
targetSdkVersion 27
1111
versionCode 1
12-
versionName "3.0.8"
12+
versionName "3.0.9"
1313

14-
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.0.8\""
14+
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.0.9\""
1515

1616
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1717
}
@@ -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.0.8'
74+
libraryVersion = '3.0.9'
7575

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

0 commit comments

Comments
 (0)