adc613d801
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
51 lines
1.3 KiB
Groovy
51 lines
1.3 KiB
Groovy
allprojects {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
}
|
|
|
|
buildscript {
|
|
ext {
|
|
annotationsVersion = '1.1.0'
|
|
appcompatVersion = '1.1.0'
|
|
cardviewVersion = '1.0.0'
|
|
collectionVersion = '1.1.0'
|
|
coreKtxVersion = '1.2.0'
|
|
constraintLayoutVersion = '1.1.3'
|
|
coordinatorLayoutVersion = '1.1.0'
|
|
agpVersion = '3.6.1'
|
|
fragmentVersion = '1.2.2'
|
|
materialComponentsVersion = '1.1.0'
|
|
jsr305Version = '3.0.2'
|
|
kotlinVersion = '1.3.70'
|
|
preferenceVersion = '1.1.0'
|
|
streamsupportVersion = '1.7.1'
|
|
threetenabpVersion = '1.2.2'
|
|
// ZXING switched minSdk to 24 so we cannot upgrade to 4.0.2 without following suit.
|
|
// If you choose to upgrade to minSDK 24 then you should also disable Jetifier from
|
|
// gradle.properties.
|
|
zxingEmbeddedVersion = '3.6.0'
|
|
eddsaVersion = '0.3.0'
|
|
}
|
|
dependencies {
|
|
classpath "com.android.tools.build:gradle:$agpVersion"
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
|
|
}
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|
|
|
|
tasks {
|
|
wrapper {
|
|
gradleVersion = "6.2.1"
|
|
distributionType = Wrapper.DistributionType.ALL
|
|
}
|
|
}
|