diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2020-02-14 15:27:17 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-14 15:27:17 +0530 |
commit | 02ea696070aea1cdf0b71af0639499f87196ec8c (patch) | |
tree | 39ea7eb8c9cc2daded826d782cda1bf04c0ffee7 /app/build.gradle | |
parent | d25702d99ded6946608713e670c6a6ce323f8f87 (diff) |
Port tunnel creation UI from Viscerion
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/build.gradle b/app/build.gradle index 3237d35b..9881cb7c 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,4 +1,5 @@ apply plugin: 'com.android.application' +apply plugin: 'kotlin-android' apply from: 'nonnull.gradle' // Create a variable called keystorePropertiesFile, and initialize it to your @@ -70,9 +71,11 @@ ext { annotationsVersion = '1.1.0' appcompatVersion = '1.1.0' cardviewVersion = '1.0.0' + coordinatorLayoutVersion = '1.1.3' databindingVersion = '3.5.3' materialComponentsVersion = '1.1.0' jsr305Version = '3.0.2' + kotlinVersion = '1.3.61' preferenceVersion = '1.1.0' streamsupportVersion = '1.7.1' threetenabpVersion = '1.2.2' @@ -96,6 +99,8 @@ dependencies { implementation "net.sourceforge.streamsupport:android-retrofuture:$streamsupportVersion" implementation "net.sourceforge.streamsupport:android-retrostreams:$streamsupportVersion" implementation "net.i2p.crypto:eddsa:$eddsaVersion" + implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion" + implementation "androidx.constraintlayout:constraintlayout:$coordinatorLayoutVersion" } tasks.withType(JavaCompile) { |