From 88eba1c3412c57daf0f0d5d00d2dd2ddb956c876 Mon Sep 17 00:00:00 2001 From: Nipun Date: Wed, 9 Feb 2022 13:31:16 -0800 Subject: [PATCH] Release v5.1.0 - v5.1.0 * _*Master Release*_ - Feb 9, 2022 * Added BranchPluginSupport class with deviceDescription() method. Will be used by the AdobeBranchExtension to pass device data. * Resolves timeout and non-initialization issues introducing a connect timeout, and retrying init requests. * Possible behavior change is with the increased timeout, any operations awaiting these requests may see longer timeouts. * To set the timeouts: * `public void setConnectTimeout(int connectTimeout)` * `public void setTimeout(int timeout)` * Time is in milliseconds --- ChangeLog.md | 11 +++++++++++ gradle.properties | 4 ++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 27f2e568d..130f92057 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,4 +1,15 @@ # Branch Android SDK change log + +- v5.1.0 + * _*Master Release*_ - Feb 9, 2022 + * Added BranchPluginSupport class with deviceDescription() method. Will be used by the AdobeBranchExtension to pass device data. + * Resolves timeout and non-initialization issues introducing a connect timeout, and retrying init requests. + * Possible behavior change is with the increased timeout, any operations awaiting these requests may see longer timeouts. + * To set the timeouts: + * `public void setConnectTimeout(int connectTimeout)` + * `public void setTimeout(int timeout)` + * Time is in milliseconds + - v5.0.15 * _*Master Release*_ - Nov 10, 2021 * Bug fixes: IntegrationValidator (ConcurrentModificationException, Decoding Resource Strings) diff --git a/gradle.properties b/gradle.properties index 5003ac56a..f2b92db7e 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ -VERSION_NAME=5.0.15 -VERSION_CODE=050015 +VERSION_NAME=5.1.0 +VERSION_CODE=050100 GROUP=io.branch.sdk.android POM_DESCRIPTION=Use the Branch SDK (branch.io) to create and power the links that point back to your apps for all of these things and more. Branch makes it incredibly simple to create powerful deep links that can pass data across app install and open while handling all edge cases (using on desktop vs. mobile vs. already having the app installed, etc). Best of all, it is really simple to start using the links for your own app: only 2 lines of code to register the deep link router and one more line of code to create the links with custom data.