diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2021-10-29 17:18:27 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2021-10-29 17:19:00 +0200 |
commit | 06306c669deb800ca960b54496f6d3c94888e86d (patch) | |
tree | b80a5d2efe8f2c669a652dbd30ea2400b146f68d /README.md | |
parent | d19e126e2e5ee6ec54838cf8bd1dc6ee8a0a8e33 (diff) |
README: re-add desugaring block
People are never gonna figure it out otherwise.
This reverts commit 1701e4fde4d167d0812f55460c6b4c6e534ea627.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -22,7 +22,18 @@ The tunnel library is [on Maven Central](https://search.maven.org/artifact/com.w implementation 'com.wireguard.android:tunnel:$wireguardTunnelVersion' ``` -The library makes use of Java 8 features, so be sure to support those in your gradle configuration with [desugaring](https://developer.android.com/studio/write/java8-support#library-desugaring) +The library makes use of Java 8 features, so be sure to support those in your gradle configuration with [desugaring](https://developer.android.com/studio/write/java8-support#library-desugaring): + +``` +compileOptions { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + coreLibraryDesugaringEnabled = true +} +dependencies { + coreLibraryDesugaring "com.android.tools:desugar_jdk_libs:1.1.5" +} +``` ## Translating |