From bc02508102b5ffe6f0ed46392585597b70351d56 Mon Sep 17 00:00:00 2001 From: agnostic-apollo Date: Thu, 18 Mar 2021 21:55:42 +0500 Subject: [PATCH] Fix dependencies ordering --- app/build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 52c51d4b..0d88b0a4 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -8,9 +8,11 @@ android { dependencies { implementation "androidx.annotation:annotation:1.1.0" - implementation "androidx.viewpager:viewpager:1.0.0" + implementation 'androidx.appcompat:appcompat:1.2.0' + implementation 'androidx.core:core:1.5.0-beta03' implementation "androidx.drawerlayout:drawerlayout:1.1.1" - implementation 'androidx.core:core:1.5.0-beta02' + implementation 'androidx.preference:preference:1.1.1' + implementation "androidx.viewpager:viewpager:1.0.0" implementation 'com.google.guava:guava:24.1-jre' implementation project(":terminal-view") } @@ -87,8 +89,6 @@ android { } dependencies { - implementation 'androidx.appcompat:appcompat:1.2.0' - implementation 'androidx.preference:preference:1.1.1' testImplementation 'junit:junit:4.13.1' testImplementation 'org.robolectric:robolectric:4.4' }