What do i need to do, to "import kotlin.system.mea...
# multiplatform
k
What do i need to do, to "import kotlin.system.measureTimeMillis" in commons module, so it don't complain about unresolved reference?
t
it's not available for common, so you cant import anything to do that
👍 1
what you can do i
expect
measureTimeMillis and implement it yourself in all targets - e.g. by aliasing to the kotlin-provided implementation
k
maybe I could try new Time package, it seems that I could get same things from there
👍 1