Leandro Borges Ferreira
10/17/2023, 8:17 PMExpected class '[SomeClass]' has no actual declaration in module <[my_module]_debug>
The class is inside the jvmMain
, but looks like the compiler is creating one module for each build type of android, which is kinda funny because the android app doesn't dependent on the jvm of this module. Is there a way to prevent this? Am I forgetting something?zsmb
10/17/2023, 10:04 PMjvmMain
by default, have you done any configuration to include jvmMain
in your Android builds? Not sure if you can share your project by any chance.Leandro Borges Ferreira
10/18/2023, 8:45 AMandroid{}
of the gradle file. After removing this, it worked fine =]. Thanks for the info!