aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/README.md
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2023-05-03 14:23:54 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2023-05-03 14:23:54 +0200
commit318f36a20550260042c3e5a21ba06331c5384f51 (patch)
tree0d9a980d1b65369733b5adc4dfc99f9c18aeee15 /README.md
parentgradle: use newer desugaring (diff)
downloadwireguard-android-318f36a20550260042c3e5a21ba06331c5384f51.tar.xz
wireguard-android-318f36a20550260042c3e5a21ba06331c5384f51.zip
README: account for java version updates
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to '')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index ff827538..eaffeee7 100644
--- a/README.md
+++ b/README.md
@@ -26,12 +26,12 @@ The library makes use of Java 8 features, so be sure to support those in your gr
```
compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
+ sourceCompatibility JavaVersion.VERSION_17
+ targetCompatibility JavaVersion.VERSION_17
coreLibraryDesugaringEnabled = true
}
dependencies {
- coreLibraryDesugaring "com.android.tools:desugar_jdk_libs:1.1.5"
+ coreLibraryDesugaring "com.android.tools:desugar_jdk_libs:2.0.3"
}
```