Kirill Zhukov
02/22/2023, 10:45 PMexpect
function that has different implementation based on compilation type (debug vs release basically), how would I set that up?Big Chungus
02/23/2023, 12:37 AMKirill Zhukov
02/23/2023, 12:37 AM// commonMain
expect fun foo(): String
// commonRelease
actual fun foo(): String = "release"
// commonDebug
actual fun foo(): String = "debug"
debug
and release
compilations and wire them up to each target; along with new commonRelease
and commonDebug
source sets?xxfast
03/14/2023, 2:24 AM