We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2d5fcd commit 00f2fa5Copy full SHA for 00f2fa5
build.gradle.kts
@@ -24,4 +24,8 @@ allprojects {
24
repositories {
25
mavenCentral()
26
}
27
+
28
+ tasks.withType<org.jetbrains.kotlin.gradle.dsl.KotlinCompile<*>> {
29
+ kotlinOptions.allWarningsAsErrors = true
30
+ }
31
core/build.gradle.kts
@@ -53,7 +53,7 @@ kotlin {
53
resources.setSrcDirs(listOf("$name/resources"))
54
languageSettings.apply {
55
// progressiveMode = true
56
- useExperimentalAnnotation("kotlin.Experimental")
+ optIn("kotlin.RequiresOptIn")
57
58
59
0 commit comments