diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2020-03-10 11:48:10 -0600 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2020-03-10 11:52:30 -0600 |
commit | ae2d29ff94851c6d1b8a7741449a252251feed73 (patch) | |
tree | 9a361a76a21da2e01d8ec2e38ed5094dc376c866 | |
parent | 49d7c2453524a04436d58acaa9e567c78783e0a2 (diff) |
tunnel: the external API does not expose java9
-rw-r--r-- | tunnel/build.gradle | 4 | ||||
-rw-r--r-- | ui/build.gradle | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/tunnel/build.gradle b/tunnel/build.gradle index 4d045334..ca8a4ed5 100644 --- a/tunnel/build.gradle +++ b/tunnel/build.gradle @@ -24,8 +24,8 @@ android { } dependencies { - api "net.sourceforge.streamsupport:android-retrofuture:$streamsupportVersion" - api "net.sourceforge.streamsupport:android-retrostreams:$streamsupportVersion" + implementation "net.sourceforge.streamsupport:android-retrofuture:$streamsupportVersion" + implementation "net.sourceforge.streamsupport:android-retrostreams:$streamsupportVersion" implementation "androidx.annotation:annotation:$annotationsVersion" implementation "androidx.collection:collection:$collectionVersion" implementation "com.google.code.findbugs:jsr305:$jsr305Version" diff --git a/ui/build.gradle b/ui/build.gradle index f9df8cdc..4a30a53a 100644 --- a/ui/build.gradle +++ b/ui/build.gradle @@ -83,6 +83,8 @@ dependencies { implementation "com.google.android.material:material:$materialComponentsVersion" implementation "com.journeyapps:zxing-android-embedded:$zxingEmbeddedVersion" implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion" + implementation "net.sourceforge.streamsupport:android-retrofuture:$streamsupportVersion" + implementation "net.sourceforge.streamsupport:android-retrostreams:$streamsupportVersion" } tasks.withType(JavaCompile) { |