2021-01-26 13:54:28 +01:00
|
|
|
plugins {
|
|
|
|
`kotlin-dsl`
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
mavenCentral()
|
|
|
|
maven(url = "https://jitpack.io")
|
2021-01-29 18:53:17 +01:00
|
|
|
maven(url = "https://dl.bintray.com/ekito/koin")
|
2021-01-31 12:33:41 +01:00
|
|
|
maven(url = "https://kotlin.bintray.com/kotlinx/")
|
2021-01-29 18:53:17 +01:00
|
|
|
maven(url = "https://kotlin.bintray.com/kotlin-js-wrappers/")
|
2021-01-26 13:54:28 +01:00
|
|
|
maven(url = "https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
2021-01-30 15:10:31 +01:00
|
|
|
flatDir {
|
|
|
|
dirs("fuzzywuzzy")
|
|
|
|
}
|
2021-01-26 13:54:28 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
buildscript {
|
|
|
|
dependencies {
|
|
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.21")
|
|
|
|
}
|
|
|
|
}
|
2021-02-01 17:33:30 +01:00
|
|
|
|
|
|
|
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
|
|
|
|
kotlinOptions {
|
|
|
|
freeCompilerArgs = listOf("-Xallow-jvm-ir-dependencies", "-Xskip-prerelease-check",
|
|
|
|
"-Xuse-experimental=kotlinx.coroutines.ExperimentalCoroutinesApi",
|
|
|
|
"-Xuse-experimental=kotlinx.coroutines.TheAnnotationYouWantToDisable"
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|