Benjamin Deroche
12/17/2021, 10:36 AMsolidogen
12/17/2021, 11:42 AMBenjamin Deroche
12/17/2021, 1:16 PMactual fun getPlatformName()
function in desktop.jvmMain
, but it does not compile: "Actual function 'getPlatformName' has no corresponding expected declaration"
./gradlew run
it run the main function from common.desktopMain
and then when I close the window it run the main function from desktop.jvmMain
solidogen
12/17/2021, 1:18 PMexpect getPlatformName()
in commonJvm thenBenjamin Deroche
12/17/2021, 1:22 PMexpect
in common.commonMain and its platform specific implementations using actual
keyword in common.androidMain, common.desktopMain and desktop.jvmMainColton Idle
12/17/2021, 3:09 PM