2019-11-24 15:29:05 +01:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
ext.kotlin_version = '1.3.50'
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
|
|
|
|
}
|
|
|
|
dependencies {
|
2019-12-08 19:02:08 +01:00
|
|
|
classpath 'com.android.tools.build:gradle:3.5.3'
|
2019-11-24 15:29:05 +01:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|
2019-12-12 21:23:11 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ext {
|
|
|
|
buildToolsVersion = "28.0.3"
|
|
|
|
androidxLibVersion = "1.0.0"
|
|
|
|
coreVersion = "1.3.0-alpha03"
|
|
|
|
extJUnitVersion = "1.1.2-alpha03"
|
|
|
|
runnerVersion = "1.3.0-alpha03"
|
|
|
|
rulesVersion = "1.3.0-alpha03"
|
|
|
|
espressoVersion = "3.3.0-alpha03"
|
|
|
|
extJUnitVersion = "1.1.2-alpha03"
|
|
|
|
extTruthVersion = "1.3.0-alpha03"
|
|
|
|
robolectricVersion = "4.3.1"
|
|
|
|
}
|