Skip to content

Commit 6ff3500

Browse files
committed
Prepare for 3.0.8
1 parent 2cf5eef commit 6ff3500

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

CHANGELOG.md

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

18+
## [3.0.8](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.0.8)
19+
#### Added
20+
- Added an option to specify notification channel name via manifest metadata (`iterable_notification_channel_name`)
21+
- Added support for color resource references in `iterable_notification_color` manifest metadata parameter
22+
23+
#### Changed
24+
- `updateEmail` can now be used if the user is identified with userId
25+
- Connection timeout is now 3 seconds
26+
27+
#### Fixed
28+
- Fixed a NullPointerException when the app has a plain-text label in `AndroidManifest.xml` instead of a string resource reference
29+
1830
## [3.0.7](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.0.7)
1931
#### Added
2032
- Added `updateEmail` method with success & failure callbacks

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Congratulations, you've configured your mobile application to receive push notif
3030
Add the following dependencies to your application's `build.gradle`:
3131

3232
```groovy
33-
compile 'com.iterable:iterableapi:3.0.7'
33+
compile 'com.iterable:iterableapi:3.0.8'
3434
compile 'com.google.firebase:firebase-messaging:X.X.X' // Min version 9.0.0
3535
```
3636

iterableapi/build.gradle

Lines changed: 3 additions & 3 deletions
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.7"
12+
versionName "3.0.8"
1313

14-
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.0.7\""
14+
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.0.8\""
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.7'
74+
libraryVersion = '3.0.8'
7575

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

0 commit comments

Comments
 (0)