Files
DaysLeft/build.gradle
hmalik144 66af16b999 ## Migrated to kotlin
# migrated to androidx

- update to mvvm
- creation of viewmodels and factories
- dependency injection with kodein
- app class created with modules
- creation of firebase/live data class

(put out fires from migration)
2020-07-10 22:08:16 +01:00

32 lines
746 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.3.72'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.0'
classpath 'com.google.gms:google-services:4.2.0'
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()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}