diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2023-05-03 00:49:47 +0530 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2023-05-03 00:49:47 +0530 |
commit | 1b5f4d6dfd5208755c7b9571cf5bf7e45bb49bca (patch) | |
tree | de167e84b54adf8a984994e434361e7dc23c3b89 /tunnel | |
parent | bed2f2e5d61ab8a4d3c0e4dabe6d60ffc3d1c1ec (diff) |
gradle: move JVM target up to 11
1.8 is being deprecated across the board
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to 'tunnel')
-rw-r--r-- | tunnel/build.gradle.kts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tunnel/build.gradle.kts b/tunnel/build.gradle.kts index 1039923a..8aa79caa 100644 --- a/tunnel/build.gradle.kts +++ b/tunnel/build.gradle.kts @@ -10,8 +10,8 @@ plugins { android { compileSdk = 33 compileOptions { - sourceCompatibility = JavaVersion.VERSION_1_8 - targetCompatibility = JavaVersion.VERSION_1_8 + sourceCompatibility = JavaVersion.VERSION_11 + targetCompatibility = JavaVersion.VERSION_11 } namespace = "com.wireguard.android.tunnel" defaultConfig { |