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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 24.1.3

* Extended minimum JDK support to 8.

## 24.1.2
* !! Major Breaking Change !! Minimum JDK support is 19 for this minor.

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ buildscript {
}

allprojects {
ext.CLY_VERSION = "24.1.2"
ext.CLY_VERSION = "24.1.3"
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.2
VERSION_NAME=24.1.3
GROUP=ly.count.sdk

POM_URL=https://github.com/Countly/countly-sdk-java
Expand Down
5 changes: 5 additions & 0 deletions sdk-java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ buildscript {
}
}

java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}

dependencies {
implementation 'org.json:json:20250107'
implementation 'com.google.code.findbugs:jsr305:3.0.2'
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.2";
protected String sdkVersion = "24.1.3";

/**
* 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.2";
static String SDK_VERSION = "24.1.3";
static String APPLICATION_VERSION = "1.0";

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