Skip to content

Commit 9d914c2

Browse files
authored
Merge pull request #942 from Iterable/prepare-for-release-3.6.0
Prepare for Release 3.6.0
2 parents 022ea95 + 88ae91b commit 9d914c2

File tree

5 files changed

+16
-5
lines changed

5 files changed

+16
-5
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## [Unreleased]
66

7+
## [3.6.0]
8+
#### Added
9+
- Introduces support for Unknown user activation: a feature that allows marketers to convert valuable visitors into customers. With this feature, the SDK can:
10+
- Fetch unknown user profile creation criteria from your Iterable project, and then automatically create Iterable user profiles for unknown users who meet these criteria.
11+
- Save information about a visitor's previous interactions with your application to their unknown user profile, after it's created.
12+
- Display personalized messages for unknown users (in-app, push, and embedded messages).
13+
- Merge unknown user profiles into an existing, known user profiles (when needed).
14+
- `IterableConfig` is updated with an `enableUnknownUserActivation` flag that needs to be set to true to allow use of the unknown user activation functionality
15+
- To learn more, read [Unknown User Activation: Developer Docs](https://support.iterable.com/hc/sections/40078809116180).
16+
717
## [3.5.16]
818
### Added
919
- Added offline support for disable push API requests, allowing requests to be queued and processed when network connectivity is restored

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ To learn more about various SDK features, read:
3535
- [Android App Links](https://support.iterable.com/hc/articles/360035127392)
3636
- [Deep Links in Push Notifications](https://support.iterable.com/hc/articles/360035453971)
3737
- [Embedded Messages with Iterable's Android SDK](https://support.iterable.com/hc/articles/23061877893652)
38+
- [Unknown User Activation: Developer Docs](https://support.iterable.com/hc/sections/40078809116180)
3839

3940
## Sample projects
4041

iterableapi-ui/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ dependencies {
6161

6262
ext {
6363
libraryName = 'iterableapi-ui'
64-
libraryVersion = '3.5.16'
64+
libraryVersion = '3.6.0'
6565
}
6666

6767
if (hasProperty("mavenPublishEnabled")) {

iterableapi/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ android {
2121
minSdkVersion 21
2222
targetSdkVersion 34
2323

24-
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.5.16\""
24+
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.6.0\""
2525

2626
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2727
}
@@ -89,7 +89,7 @@ dependencies {
8989

9090
ext {
9191
libraryName = 'iterableapi'
92-
libraryVersion = '3.5.16'
92+
libraryVersion = '3.6.0'
9393
}
9494

9595
if (hasProperty("mavenPublishEnabled")) {

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ dependencies {
4242
implementation 'androidx.navigation:navigation-ui-ktx:2.6.0'
4343
implementation 'com.google.android.material:material:1.9.0'
4444

45-
implementation 'com.iterable:iterableapi:3.5.16'
46-
implementation 'com.iterable:iterableapi-ui:3.5.16'
45+
implementation 'com.iterable:iterableapi:3.6.0'
46+
implementation 'com.iterable:iterableapi-ui:3.6.0'
4747
implementation 'com.squareup.okhttp3:mockwebserver:4.2.2'
4848

4949
testImplementation 'junit:junit:4.13.2'

0 commit comments

Comments
 (0)