From af10b117b42143a64c8108bf072555fe1f40adce Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Sun, 13 Sep 2020 17:51:30 +0530 Subject: [PATCH] build: uprev dependencies and fix script block order - buildscript must always be the first block in a Gradle build - ConstraintLayout, Kotlin and bintray plugin are updated to their latest stable revisions - Biometrics is updated to the latest alpha release to make use of multiple memory leak fixes that plague the 1.0.x implementations Signed-off-by: Harsh Shandilya --- build.gradle | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/build.gradle b/build.gradle index cf888523..33b463e9 100644 --- a/build.gradle +++ b/build.gradle @@ -1,20 +1,12 @@ - -allprojects { - repositories { - google() - jcenter() - } -} - buildscript { ext { agpVersion = '4.0.1' annotationsVersion = '1.1.0' appcompatVersion = '1.2.0' - bintrayPluginVersion = '1.8.4' - biometricVersion = '1.0.1' + bintrayPluginVersion = '1.8.5' + biometricVersion = '1.1.0-alpha02' collectionVersion = '1.1.0' - constraintLayoutVersion = '2.0.0' + constraintLayoutVersion = '2.0.1' coordinatorLayoutVersion = '1.1.0' coreKtxVersion = '1.3.1' coroutinesVersion = '1.3.9' @@ -22,7 +14,7 @@ buildscript { fragmentVersion = '1.2.5' jsr305Version = '3.0.2' junitVersion = '4.13' - kotlinVersion = '1.4.0' + kotlinVersion = '1.4.10' materialComponentsVersion = '1.3.0-alpha02' mavenPluginVersion = '2.1' preferenceVersion = '1.1.1' @@ -44,6 +36,13 @@ buildscript { } } +allprojects { + repositories { + google() + jcenter() + } +} + task clean(type: Delete) { delete rootProject.buildDir }