SpotiFlyer/build.gradle.kts

26 lines
797 B
Plaintext
Raw Normal View History

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-02-09 10:05:04 +01:00
/*
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"
)
}
2021-02-09 10:05:04 +01:00
}*/