Skip to content

Commit 7932d80

Browse files
authored
Merge pull request #342 from Countly/24_6_0
feat: 24.7.0
2 parents 27587aa + 38f1077 commit 7932d80

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
1-
## 24.6.0
1+
## 24.7.0
22
* ! Minor breaking change ! User properties will now be automatically saved under the following conditions:
33
* When an event is recorded
44
* During an internal timer tick
55
* Upon flushing the event queue
66

7+
* Added support for array, List and JSONArray to all user given segmentations. They will support only mutable and ummutable versions of the primitive types. Which are:
8+
* String, Integer, int, Boolean, bool, Float, float, Double, double, Long, long
9+
* Keep in mind that float array will be converted to the double array by the JSONArray
10+
711
* Mitigated an issue where remote config values caching was changing by device id change, not anymore. It is linked to the configuration "enableRemoteConfigValueCaching" now.
812
* Mitigated an issue related to the device ID by creating an internal migration.
913
* Resolved a problem where revoked consents were sent after changes without merging.
1014
* Fixed a bug that caused the device ID to be incorrectly set after changes with merging.
1115
* Mitigated an issue where on consent revoke, remote config values were cleared, not anymore.
1216

13-
* Added support for array, List and JSONArray to all user given segmentations. They will support only mutable and ummutable versions of the primitive types. Which are:
14-
* String, Integer, int, Boolean, bool, Float, float, Double, double, Long, long
15-
* Keep in mind that float array will be converted to the double array by the JSONArray
17+
* Change device id with merge not reporting session duration anymore.
1618

1719
## 24.4.1
1820
* ! Minor breaking change ! Mitigated an issue where internal SDK limits did not apply

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=24.6.0-RC1
25+
VERSION_NAME=24.7.0
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
@@ -42,7 +42,7 @@ public class TestUtils {
4242
public final static String commonAppKey = "appkey";
4343
public final static String commonDeviceId = "1234";
4444
public final static String SDK_NAME = "java-native-android";
45-
public final static String SDK_VERSION = "24.6.0-RC1";
45+
public final static String SDK_VERSION = "24.7.0";
4646
public static final int MAX_THREAD_COUNT_PER_STACK_TRACE = 50;
4747

4848
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 = "24.6.0-RC1";
50+
private final String DEFAULT_COUNTLY_SDK_VERSION_STRING = "24.7.0";
5151

5252
/**
5353
* Used as request meta data on every request

0 commit comments

Comments
 (0)