2020-01-20 15:53:22 -08:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
|
|
buildscript {
|
2020-01-20 16:13:40 -08:00
|
|
|
ext.kotlin_version = '1.3.61'
|
2020-01-22 13:02:24 -08:00
|
|
|
ext.compose_version = '0.1.0-dev03'
|
2020-01-20 15:53:22 -08:00
|
|
|
repositories {
|
|
|
|
|
google()
|
|
|
|
|
jcenter()
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
dependencies {
|
2020-01-21 19:16:03 -08:00
|
|
|
classpath 'com.android.tools.build:gradle:4.0.0-alpha09'
|
2020-01-20 15:53:22 -08: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
|
2020-01-22 09:28:59 -08:00
|
|
|
|
|
|
|
|
classpath 'com.google.gms:google-services:4.3.2'
|
2020-01-20 15:53:22 -08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
|
repositories {
|
|
|
|
|
google()
|
|
|
|
|
jcenter()
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
|
delete rootProject.buildDir
|
|
|
|
|
}
|