Skip to content

Commit 1ecbd4a

Browse files
authored
Merge pull request #256 from Countly/jdk-compat
Jdk compat
2 parents 01b97b0 + cec25cf commit 1ecbd4a

File tree

6 files changed

+13
-4
lines changed

6 files changed

+13
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 24.1.3
2+
3+
* Extended minimum JDK support to 8.
4+
15
## 24.1.2
26
* !! Major Breaking Change !! Minimum JDK support is 19 for this minor.
37

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ buildscript {
2020
}
2121

2222
allprojects {
23-
ext.CLY_VERSION = "24.1.2"
23+
ext.CLY_VERSION = "24.1.3"
2424
ext.POWERMOCK_VERSION = "1.7.4"
2525

2626
tasks.withType(Javadoc) {

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# org.gradle.parallel=true
1919

2020
# RELEASE FIELD SECTION
21-
VERSION_NAME=24.1.2
21+
VERSION_NAME=24.1.3
2222
GROUP=ly.count.sdk
2323

2424
POM_URL=https://github.com/Countly/countly-sdk-java

sdk-java/build.gradle

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ buildscript {
1212
}
1313
}
1414

15+
java {
16+
sourceCompatibility = JavaVersion.VERSION_1_8
17+
targetCompatibility = JavaVersion.VERSION_1_8
18+
}
19+
1520
dependencies {
1621
implementation 'org.json:json:20250107'
1722
implementation 'com.google.code.findbugs:jsr305:3.0.2'

sdk-java/src/main/java/ly/count/sdk/java/Config.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public class Config {
6868
/**
6969
* Countly SDK version to be sent in HTTP requests
7070
*/
71-
protected String sdkVersion = "24.1.2";
71+
protected String sdkVersion = "24.1.3";
7272

7373
/**
7474
* Countly SDK version to be sent in HTTP requests

sdk-java/src/test/java/ly/count/sdk/java/internal/TestUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public class TestUtils {
3939
static String SERVER_APP_KEY = "COUNTLY_APP_KEY";
4040
static String DEVICE_ID = "some_random_test_device_id";
4141
static String SDK_NAME = "java-native";
42-
static String SDK_VERSION = "24.1.2";
42+
static String SDK_VERSION = "24.1.3";
4343
static String APPLICATION_VERSION = "1.0";
4444

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

0 commit comments

Comments
 (0)