Skip to content

Commit

Permalink
real version
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtursKadikis committed Apr 3, 2024
1 parent ed0a8a2 commit 0955718
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ org.gradle.configureondemand=true
android.useAndroidX=true
android.enableJetifier=true
# RELEASE FIELD SECTION
VERSION_NAME=24.4.0-RC1
VERSION_NAME=24.4.0
GROUP=ly.count.android
POM_URL=https://github.com/Countly/countly-sdk-android
POM_SCM_URL=https://github.com/Countly/countly-sdk-android
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public class TestUtils {
public final static String commonAppKey = "appkey";
public final static String commonDeviceId = "1234";
public final static String SDK_NAME = "java-native-android";
public final static String SDK_VERSION = "24.4.0-RC1";
public final static String SDK_VERSION = "24.4.0";

public static class Activity2 extends Activity {
}
Expand Down
4 changes: 2 additions & 2 deletions sdk/src/main/java/ly/count/android/sdk/Countly.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ of this software and associated documentation files (the "Software"), to deal
*/
public class Countly {

private final String DEFAULT_COUNTLY_SDK_VERSION_STRING = "24.4.0-RC1";
private final String DEFAULT_COUNTLY_SDK_VERSION_STRING = "24.4.0";

/**
* Used as request meta data on every request
Expand Down Expand Up @@ -394,7 +394,7 @@ public synchronized Countly init(CountlyConfig config) {
} else {
config.sdkInternalLimits.maxSegmentationValues = maxSegmentationValuesDefault;
}

if (config.sdkInternalLimits.maxBreadcrumbCount != null) {
if (config.sdkInternalLimits.maxBreadcrumbCount < 1) {
config.sdkInternalLimits.maxBreadcrumbCount = 1;
Expand Down

0 comments on commit 0955718

Please sign in to comment.