Skip to content

Commit 48ed671

Browse files
authored
Merge pull request #485 from Countly/2541
feat: 25.4.1
2 parents cb22bf7 + 8e89a5d commit 48ed671

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

CHANGELOG.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
## XX.XX.XX
2-
* Improved request queue handling, added a backoff mechanism to the SDK to better handle cases where the server responds slowly, enabled by default.
3-
* Added a config method to disable backoff mechanism "disableBackoffMechanism()"
4-
* Added a config method to disable server config updates in the initialization "disableSDKBehaviorSettingsUpdates()".
5-
* The feedback widgets now have transparent backgrounds and fullscreen for a cleaner look.
1+
## 25.4.1
2+
* Improved request queue handling with a built-in backoff mechanism which is enabled by default.
3+
* Added "disableBackoffMechanism()" init config method to disable backoff behavior.
4+
* Added "disableSDKBehaviorSettingsUpdates()" init config method to disable server config updates.
5+
* Added fullscreen support for feedback widgets.
66
* Extended the notification button URL handler to allow custom handling of URLs when notification buttons are clicked in the background.
77

88
* Deprecated "presentFeedbackWidget(widgetInfo, context, closeButtonText, devCallback)", replaced with "presentFeedbackWidget(widgetInfo, context, devCallback)" in the feedbacks.

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ org.gradle.configureondemand=true
2222
android.useAndroidX=true
2323
android.enableJetifier=true
2424
# RELEASE FIELD SECTION
25-
VERSION_NAME=25.4.1-RC3
25+
VERSION_NAME=25.4.1
2626
GROUP=ly.count.android
2727
POM_URL=https://github.com/Countly/countly-sdk-android
2828
POM_SCM_URL=https://github.com/Countly/countly-sdk-android

sdk/src/androidTest/java/ly/count/android/sdk/TestUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public class TestUtils {
4444
public final static String commonAppKey = "appkey";
4545
public final static String commonDeviceId = "1234";
4646
public final static String SDK_NAME = "java-native-android";
47-
public final static String SDK_VERSION = "25.4.1-RC3";
47+
public final static String SDK_VERSION = "25.4.1";
4848
public static final int MAX_THREAD_COUNT_PER_STACK_TRACE = 50;
4949

5050
public static class Activity2 extends Activity {

sdk/src/main/java/ly/count/android/sdk/Countly.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ of this software and associated documentation files (the "Software"), to deal
4747
*/
4848
public class Countly {
4949

50-
private final String DEFAULT_COUNTLY_SDK_VERSION_STRING = "25.4.1-RC3";
50+
private final String DEFAULT_COUNTLY_SDK_VERSION_STRING = "25.4.1";
5151
/**
5252
* Used as request meta data on every request
5353
*/

0 commit comments

Comments
 (0)