Skip to content

Commit 0955718

Browse files
committed
real version
1 parent ed0a8a2 commit 0955718

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

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.4.0-RC1
25+
VERSION_NAME=24.4.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.4.0-RC1";
45+
public final static String SDK_VERSION = "24.4.0";
4646

4747
public static class Activity2 extends Activity {
4848
}

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

Lines changed: 2 additions & 2 deletions
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.4.0-RC1";
50+
private final String DEFAULT_COUNTLY_SDK_VERSION_STRING = "24.4.0";
5151

5252
/**
5353
* Used as request meta data on every request
@@ -394,7 +394,7 @@ public synchronized Countly init(CountlyConfig config) {
394394
} else {
395395
config.sdkInternalLimits.maxSegmentationValues = maxSegmentationValuesDefault;
396396
}
397-
397+
398398
if (config.sdkInternalLimits.maxBreadcrumbCount != null) {
399399
if (config.sdkInternalLimits.maxBreadcrumbCount < 1) {
400400
config.sdkInternalLimits.maxBreadcrumbCount = 1;

0 commit comments

Comments
 (0)