aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/app/build.gradle
diff options
context:
space:
mode:
authorHarsh Shandilya <me@msfjarvis.dev>2020-03-09 10:20:14 +0530
committerHarsh Shandilya <me@msfjarvis.dev>2020-03-09 10:20:14 +0530
commite71d6157f1726e6e4bc19a314d427ed2d6f42817 (patch)
tree6ff9c1d54684a9ca31acdb3a60870dba689327d9 /app/build.gradle
parentglobal: Use requireContext rather than getContext in fragments (diff)
downloadwireguard-android-e71d6157f1726e6e4bc19a314d427ed2d6f42817.tar.xz
wireguard-android-e71d6157f1726e6e4bc19a314d427ed2d6f42817.zip
Add coordinatorlayout dependency and sort
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to 'app/build.gradle')
-rw-r--r--app/build.gradle6
1 files changed, 4 insertions, 2 deletions
diff --git a/app/build.gradle b/app/build.gradle
index 70fd8ea5..a32d14f0 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -77,7 +77,8 @@ ext {
appcompatVersion = '1.1.0'
cardviewVersion = '1.0.0'
coreKtxVersion = '1.2.0'
- coordinatorLayoutVersion = '1.1.3'
+ constraintLayoutVersion = '1.1.3'
+ coordinatorLayoutVersion = '1.1.0'
databindingVersion = '3.6.0'
fragmentVersion = '1.2.2'
materialComponentsVersion = '1.1.0'
@@ -97,6 +98,8 @@ dependencies {
implementation "androidx.annotation:annotation:$annotationsVersion"
implementation "androidx.appcompat:appcompat:$appcompatVersion"
implementation "androidx.cardview:cardview:$cardviewVersion"
+ implementation "androidx.constraintlayout:constraintlayout:$constraintLayoutVersion"
+ implementation "androidx.coordinatorlayout:coordinatorlayout:$coordinatorLayoutVersion"
implementation "androidx.core:core-ktx:$coreKtxVersion"
implementation "androidx.databinding:databinding-runtime:$databindingVersion"
implementation "androidx.fragment:fragment:$fragmentVersion"
@@ -109,7 +112,6 @@ dependencies {
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) {