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-09-02 19:13:16 +00:00
|
|
|
classpath("com.android.tools.build:gradle:4.2.0-alpha09")
|
2020-08-22 11:08:09 +00:00
|
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${Versions.kotlin}")
|
|
|
|
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-08-22 11:08:09 +00:00
|
|
|
maven { url = "https://dl.bintray.com/ekito/koin" }
|
|
|
|
maven { url = "https://kotlin.bintray.com/kotlin-js-wrappers/" }
|
|
|
|
maven { url = "https://dl.bintray.com/touchlabpublic/kotlin" }
|
2020-09-02 08:43:08 +00:00
|
|
|
maven { url 'https://jitpack.io' }
|
2020-02-09 11:42:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|