2020-02-09 11:42:41 +00:00
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
google()
|
2020-04-03 19:04:36 +00:00
|
|
|
mavenCentral()
|
2020-02-09 11:42:41 +00:00
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
dependencies {
|
2020-12-23 12:19:05 +00:00
|
|
|
classpath("com.android.tools.build:gradle:7.0.0-alpha03")
|
2020-12-23 12:20:27 +00:00
|
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${Versions.kotlin}")
|
2020-08-22 11:08:09 +00:00
|
|
|
classpath("org.jetbrains.kotlin:kotlin-serialization:${Versions.kotlin}")
|
2020-02-09 11:42:41 +00:00
|
|
|
classpath("com.squareup.sqldelight:gradle-plugin:${Versions.sqlDelight}")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
2020-04-03 19:04:36 +00:00
|
|
|
mavenCentral()
|
2020-02-09 11:42:41 +00:00
|
|
|
jcenter()
|
2020-10-28 21:19:44 +00:00
|
|
|
maven(url = "https://dl.bintray.com/ekito/koin")
|
|
|
|
maven(url = "https://kotlin.bintray.com/kotlin-js-wrappers/")
|
|
|
|
maven(url = "https://jitpack.io")
|
2020-02-09 11:42:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|