Hello, maybe someone can give me a hint here… I’m ...
# bazel
m
Hello, maybe someone can give me a hint here… I’m struggling trying to get rid of this warning for a few days now:
warning: opt-in requirement marker kotlinx.serialization.ExperimentalSerializationApi is unresolved. Please make sure it's present in the module dependencies
Copy code
kt_kotlinc_options(
    name = "kt_kotlinc_options",
    warn = "report",
    x_optin = [
        "kotlin.ExperimentalStdlibApi",
        "kotlin.RequiresOptIn",
        "kotlinx.serialization.ExperimentalSerializationApi",
    ],
)
the other 2 opt-ins are fine… just the serialization one is stubborn with that warning. everything builds fine though… but I have hundreds of warnings like that and its pretty annoying.