From fa8fef97248d1be100f5b00fcac92baf1f51c04d Mon Sep 17 00:00:00 2001 From: Anton Keks Date: Tue, 18 Jan 2022 22:45:08 +0200 Subject: [PATCH] #324 temporarily switch target compatibility to Java 8 to make at least 32-bit version still run under Java 8 (most likely from Oracle) --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 6f8ba9a3..99a6ffe6 100644 --- a/build.gradle +++ b/build.gradle @@ -20,8 +20,8 @@ def platform = osName.contains("Linux") ? 'linux' + (is64 ? '64' : '32') : osName.contains("OS X") ? 'mac' + (isArm ? "Arm64" : "X86") : 'unknown' version = gitVersion() -sourceCompatibility = 11 -targetCompatibility = 11 +sourceCompatibility = 8 +targetCompatibility = 8 sourceSets { main {