Skip to content

Commit e442f6f

Browse files
authored
Merge pull request #515 from Countly/rc-for-25.4.5
25 RC-1
2 parents 7a49bc0 + 48e9ec6 commit e442f6f

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
## X.X.X
2-
* Mitigated a potential issue where Remote Config calls could have block the main UI thread processes.
1+
## 25.4.5
32
* Added a new config flag `setUseSerialExecutor(boolean useSerial)` for selecting immediate request executor type.
43
* Added a new config option `setWebviewDisplayOption(WebViewDisplayOption)` to control how Content and Feedback Widgets are displayed.
54
* `IMMERSIVE` mode (default): Full-screen display (except cutouts).
65
* `SAFE_AREA` mode: Omits status bar, navigation bar and cutouts when displaying webviews.
7-
* Added a new init config option `disableGradualRequestCleaner()` to change request queue overflow behavior. When enabled, all overflowing requests (plus one slot) are removed at once instead of being cleaned gradually in limited batches.
6+
* Added a new config option `disableGradualRequestCleaner()` to change request queue overflow behavior. When enabled, all overflowing requests are removed at once instead of in batches.
7+
* Added a new method `requestQueue().addCustomNetworkRequestHeaders(Map<String,String>)` for providing or overriding custom headers after init .
88

9-
* Added a new method `requestQueue().addCustomNetworkRequestHeaders(Map<String,String>)` for providing or overriding custom headers after init
9+
* Mitigated a potential issue where Remote Config calls could have blocked the main UI thread processes.
1010

1111
* Immediate requests now will be run by parallel executor instead of serial by default.
1212

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.4
25+
VERSION_NAME=25.4.5
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.4";
47+
public final static String SDK_VERSION = "25.4.5";
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.4";
50+
private final String DEFAULT_COUNTLY_SDK_VERSION_STRING = "25.4.5";
5151
/**
5252
* Used as request meta data on every request
5353
*/

0 commit comments

Comments
 (0)