diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2020-09-13 17:51:30 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2020-09-13 17:51:30 +0530 |
commit | af10b117b42143a64c8108bf072555fe1f40adce (patch) | |
tree | c142414fd89b72b83c07643887c7c5a10107ae47 /build.gradle | |
parent | 7aa78252090bcc7b1e7a90b406f27bc152f8a230 (diff) |
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 <me@msfjarvis.dev>
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 23 |
1 files 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 } |