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>
This commit is contained in:
Harsh Shandilya 2020-09-13 17:51:30 +05:30
parent 7aa7825209
commit af10b117b4
No known key found for this signature in database
GPG Key ID: 366D7BBAD1031E80

View File

@ -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
}