Suppressed EXPECT_ACTUAL_CLASSIFIERS_ARE_IN_BETA_WARNING compiler warning

This commit is contained in:
dankito 2024-09-19 19:09:44 +02:00
parent 6564a9d33d
commit 7712102af2
1 changed files with 7 additions and 0 deletions

View File

@ -14,6 +14,13 @@ plugins {
kotlin {
@OptIn(ExperimentalKotlinGradlePluginApi::class)
compilerOptions {
// suppresses compiler warning: [EXPECT_ACTUAL_CLASSIFIERS_ARE_IN_BETA_WARNING] 'expect'/'actual' classes (including interfaces, objects, annotations, enums, and 'actual' typealiases) are in Beta.
freeCompilerArgs.add("-Xexpect-actual-classes")
}
js {
moduleName = "composeApp"
browser {