浏览代码

Bump java versions to 17

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
Andy Scherzinger 2 年之前
父节点
当前提交
98c0a778a4
共有 2 个文件被更改,包括 4 次插入4 次删除
  1. 1 1
      app/build.gradle
  2. 3 3
      appscan/build.gradle

+ 1 - 1
app/build.gradle

@@ -212,7 +212,7 @@ android {
     }
     }
 
 
     kotlinOptions {
     kotlinOptions {
-        jvmTarget = "1.8"
+        jvmTarget = "17"
     }
     }
 
 
     lint {
     lint {

+ 3 - 3
appscan/build.gradle

@@ -25,11 +25,11 @@ android {
         }
         }
     }
     }
     compileOptions {
     compileOptions {
-        sourceCompatibility JavaVersion.VERSION_1_8
-        targetCompatibility JavaVersion.VERSION_1_8
+        sourceCompatibility JavaVersion.VERSION_17
+        targetCompatibility JavaVersion.VERSION_17
     }
     }
     kotlinOptions {
     kotlinOptions {
-        jvmTarget = '1.8'
+        jvmTarget = '17'
     }
     }
 }
 }