Skip to content

Commit c239d15

Browse files
committed
Prepare for 3.3.0-beta3
1 parent 58d15a9 commit c239d15

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

CHANGELOG.md

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

18+
## [3.3.0-beta3](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.3.0-beta3)
19+
#### Added
20+
- Support for the display of a custom message (title and body) in an empty mobile inbox.
21+
For more details, see [Customizing Mobile Inbox on Android](https://iterable.zendesk.com/hc/articles/360039189931#empty-state)
22+
- Support for syncing in-app message read state across multiple devices:
23+
- When the SDK fetches in-app messages from Iterable, it examines each message's `read` field to determine if it has already been read.
24+
- The SDK's default implementation no longer automatically displays in-app messages that have already been seen on another device (even if those messages were _not_ configured to go directly to the inbox).
25+
26+
If you'd like to try out these beta features, talk with your Iterable customer success manager.
27+
1828
## [3.3.0-beta1](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.3.0-beta1)
1929
#### Added
2030
- This beta SDK release includes support for two new Iterable features (both of which are in beta):

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.3.0-beta1'
55+
libraryVersion = '3.3.0-beta3'
5656

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

iterableapi/build.gradle

+2-2
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.3.0-beta1\""
13+
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.3.0-beta3\""
1414

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

75-
libraryVersion = '3.3.0-beta1'
75+
libraryVersion = '3.3.0-beta3'
7676

7777
developerId = 'davidtruong'
7878
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.3.0-beta1'
37-
implementation 'com.iterable:iterableapi-ui:3.3.0-beta1'
36+
implementation 'com.iterable:iterableapi:3.3.0-beta3'
37+
implementation 'com.iterable:iterableapi-ui:3.3.0-beta3'
3838
implementation 'com.squareup.okhttp3:mockwebserver:4.2.2'
3939

4040
testImplementation 'junit:junit:4.12'

0 commit comments

Comments
 (0)