:wave: is anyone using `-Xjvm-default=all` in thei...
# multiplatform
s
👋 is anyone using
-Xjvm-default=all
in their project? this doesn't seem to be working in this PR:
Copy code
targets.configureEach {
  compilations.configureEach {
    compilerOptions.configure {
      freeCompilerArgs.addAll(
        "-Xjvm-default=all", // TODO IDE complains this isn't set (transformableState.kt). is it working?
      )
    }
  }
}
j
Wasn't this removed? It's now the default. There's an annotation for compatibility bridge generation but otherwise you don't have to do anything anymore I think.
Ah nevermind I guess I'm thinking of the old annotation and the old values to that arguments.
s
this is fantastic, thank you!