diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2020-03-24 12:12:25 +0530 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2020-03-26 00:49:01 -0600 |
commit | 63a395125aa40ab9f30f3479d8e005306a16bd78 (patch) | |
tree | 81c21b7d379fb7894998c82a2de576f48ef79ff1 /ui/build.gradle | |
parent | 6f973afa36b01698509440c85ec943e75ffed871 (diff) |
Introduce realtime log viewer
This contains a share button and a save button, the former using a
custom content provider.
Co-authored-by: Jason A. Donenfeld <Jason@zx2c4.com>
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'ui/build.gradle')
-rw-r--r-- | ui/build.gradle | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ui/build.gradle b/ui/build.gradle index bc4bd740..e1d99604 100644 --- a/ui/build.gradle +++ b/ui/build.gradle @@ -22,6 +22,7 @@ android { } compileSdkVersion 29 dataBinding.enabled true + viewBinding.enabled true defaultConfig { applicationId 'com.wireguard.android' minSdkVersion 21 @@ -84,6 +85,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 "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion" + implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutinesVersion" implementation "net.sourceforge.streamsupport:android-retrofuture:$streamsupportVersion" implementation "net.sourceforge.streamsupport:android-retrostreams:$streamsupportVersion" } |