Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ buildscript {
}

allprojects {
ext.CLY_VERSION = "24.1.3"
ext.CLY_VERSION = "24.1.4"
ext.POWERMOCK_VERSION = "1.7.4"

tasks.withType(Javadoc) {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# org.gradle.parallel=true

# RELEASE FIELD SECTION
VERSION_NAME=24.1.3
VERSION_NAME=24.1.4
GROUP=ly.count.sdk

POM_URL=https://github.com/Countly/countly-sdk-java
Expand Down
2 changes: 1 addition & 1 deletion sdk-java/src/main/java/ly/count/sdk/java/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public class Config {
/**
* Countly SDK version to be sent in HTTP requests
*/
protected String sdkVersion = "24.1.3";
protected String sdkVersion = "24.1.4";

/**
* Countly SDK version to be sent in HTTP requests
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class TestUtils {
static String SERVER_APP_KEY = "COUNTLY_APP_KEY";
static String DEVICE_ID = "some_random_test_device_id";
static String SDK_NAME = "java-native";
static String SDK_VERSION = "24.1.3";
static String SDK_VERSION = "24.1.4";
static String APPLICATION_VERSION = "1.0";

public static final String[] eKeys = new String[] { "eventKey1", "eventKey2", "eventKey3", "eventKey4", "eventKey5", "eventKey6", "eventKey7" };
Expand Down
Loading