From 81c8b8790ce10b1371744eb39218cbd8348776db Mon Sep 17 00:00:00 2001 From: Evan Greer Date: Mon, 13 Jan 2025 11:28:17 -0700 Subject: [PATCH 1/3] uopdates pointers and changelog --- CHANGELOG.md | 9 +++++++++ iterableapi-ui/build.gradle | 2 +- iterableapi/build.gradle | 4 ++-- sample-apps/inbox-customization/app/build.gradle | 4 ++-- sample-apps/inbox-customization/build.gradle | 2 +- 5 files changed, 15 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3cee9b3ae..79f4ff4bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [3.5.7] + +### Added +- Support for JSON-only in-app messages, JSON-only messages are now handled by the onNewInApp handler and consumes after retrieval +- Enhanced notification state tracking to align with system notification permissions changes + +#### Fixed +- Fixed Crash while initializing IterableSDK on some devices (Unsupported IV Length). + ## [3.5.6] #### Fixed diff --git a/iterableapi-ui/build.gradle b/iterableapi-ui/build.gradle index d2777f4ef..9bc690e3e 100644 --- a/iterableapi-ui/build.gradle +++ b/iterableapi-ui/build.gradle @@ -51,7 +51,7 @@ dependencies { ext { libraryName = 'iterableapi-ui' - libraryVersion = '3.5.6' + libraryVersion = '3.5.7' } if (hasProperty("mavenPublishEnabled")) { diff --git a/iterableapi/build.gradle b/iterableapi/build.gradle index c34170d21..8d1d3d62b 100644 --- a/iterableapi/build.gradle +++ b/iterableapi/build.gradle @@ -19,7 +19,7 @@ android { minSdkVersion 16 targetSdkVersion 31 - buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.5.6\"" + buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.5.7\"" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } @@ -85,7 +85,7 @@ dependencies { ext { libraryName = 'iterableapi' - libraryVersion = '3.5.6' + libraryVersion = '3.5.7' } if (hasProperty("mavenPublishEnabled")) { diff --git a/sample-apps/inbox-customization/app/build.gradle b/sample-apps/inbox-customization/app/build.gradle index 981af2b74..03f4c7d30 100644 --- a/sample-apps/inbox-customization/app/build.gradle +++ b/sample-apps/inbox-customization/app/build.gradle @@ -33,8 +33,8 @@ dependencies { implementation 'androidx.navigation:navigation-ui-ktx:2.1.0' implementation 'com.google.android.material:material:1.1.0' - implementation 'com.iterable:iterableapi:3.5.6' - implementation 'com.iterable:iterableapi-ui:3.5.6' + implementation 'com.iterable:iterableapi:3.5.7' + implementation 'com.iterable:iterableapi-ui:3.5.7' implementation 'com.squareup.okhttp3:mockwebserver:4.2.2' testImplementation 'junit:junit:4.12' diff --git a/sample-apps/inbox-customization/build.gradle b/sample-apps/inbox-customization/build.gradle index 4c1308ccc..14e58012b 100644 --- a/sample-apps/inbox-customization/build.gradle +++ b/sample-apps/inbox-customization/build.gradle @@ -8,7 +8,7 @@ buildscript { } dependencies { - classpath 'com.android.tools.build:gradle:3.5.4' + classpath 'com.android.tools.build:gradle:3.5.7' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files From 4a6031e01cc30cac12d9b559d6238b83bf0af49f Mon Sep 17 00:00:00 2001 From: Evan Greer Date: Mon, 13 Jan 2025 11:35:08 -0700 Subject: [PATCH 2/3] updates changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 79f4ff4bc..813bb2285 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [3.5.7] ### Added -- Support for JSON-only in-app messages, JSON-only messages are now handled by the onNewInApp handler and consumes after retrieval +- Support for JSON-only in-app messages, JSON-only messages are now handled by the `onNewInApp` handler and consumed after retrieval - Enhanced notification state tracking to align with system notification permissions changes #### Fixed From d5077130fc3a5445ea326e9e67ea50cc73305774 Mon Sep 17 00:00:00 2001 From: Evan Greer Date: Mon, 13 Jan 2025 11:38:29 -0700 Subject: [PATCH 3/3] updates changelog --- CHANGELOG.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 813bb2285..93d36b8e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,9 +8,6 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Support for JSON-only in-app messages, JSON-only messages are now handled by the `onNewInApp` handler and consumed after retrieval - Enhanced notification state tracking to align with system notification permissions changes -#### Fixed -- Fixed Crash while initializing IterableSDK on some devices (Unsupported IV Length). - ## [3.5.6] #### Fixed