mirror of
https://github.com/Shabinder/SpotiFlyer.git
synced 2024-11-22 17:14:32 +01:00
33 lines
962 B
Plaintext
33 lines
962 B
Plaintext
plugins {
|
|
`kotlin-dsl`
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
mavenCentral()
|
|
maven(url = "https://jitpack.io")
|
|
maven(url = "https://dl.bintray.com/ekito/koin")
|
|
maven(url = "https://kotlin.bintray.com/kotlinx/")
|
|
maven(url = "https://kotlin.bintray.com/kotlin-js-wrappers/")
|
|
maven(url = "https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
|
flatDir {
|
|
dirs("fuzzywuzzy")
|
|
}
|
|
}
|
|
}
|
|
buildscript {
|
|
dependencies {
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.21")
|
|
}
|
|
}
|
|
|
|
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"
|
|
)
|
|
}
|
|
} |