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:
parent
7aa7825209
commit
af10b117b4
23
build.gradle
23
build.gradle
@ -1,20 +1,12 @@
|
|||||||
|
|
||||||
allprojects {
|
|
||||||
repositories {
|
|
||||||
google()
|
|
||||||
jcenter()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext {
|
ext {
|
||||||
agpVersion = '4.0.1'
|
agpVersion = '4.0.1'
|
||||||
annotationsVersion = '1.1.0'
|
annotationsVersion = '1.1.0'
|
||||||
appcompatVersion = '1.2.0'
|
appcompatVersion = '1.2.0'
|
||||||
bintrayPluginVersion = '1.8.4'
|
bintrayPluginVersion = '1.8.5'
|
||||||
biometricVersion = '1.0.1'
|
biometricVersion = '1.1.0-alpha02'
|
||||||
collectionVersion = '1.1.0'
|
collectionVersion = '1.1.0'
|
||||||
constraintLayoutVersion = '2.0.0'
|
constraintLayoutVersion = '2.0.1'
|
||||||
coordinatorLayoutVersion = '1.1.0'
|
coordinatorLayoutVersion = '1.1.0'
|
||||||
coreKtxVersion = '1.3.1'
|
coreKtxVersion = '1.3.1'
|
||||||
coroutinesVersion = '1.3.9'
|
coroutinesVersion = '1.3.9'
|
||||||
@ -22,7 +14,7 @@ buildscript {
|
|||||||
fragmentVersion = '1.2.5'
|
fragmentVersion = '1.2.5'
|
||||||
jsr305Version = '3.0.2'
|
jsr305Version = '3.0.2'
|
||||||
junitVersion = '4.13'
|
junitVersion = '4.13'
|
||||||
kotlinVersion = '1.4.0'
|
kotlinVersion = '1.4.10'
|
||||||
materialComponentsVersion = '1.3.0-alpha02'
|
materialComponentsVersion = '1.3.0-alpha02'
|
||||||
mavenPluginVersion = '2.1'
|
mavenPluginVersion = '2.1'
|
||||||
preferenceVersion = '1.1.1'
|
preferenceVersion = '1.1.1'
|
||||||
@ -44,6 +36,13 @@ buildscript {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
allprojects {
|
||||||
|
repositories {
|
||||||
|
google()
|
||||||
|
jcenter()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
task clean(type: Delete) {
|
task clean(type: Delete) {
|
||||||
delete rootProject.buildDir
|
delete rootProject.buildDir
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user