Does anyone know if it’s possible to access `kotli...
# kotlin-native
s
Does anyone know if it’s possible to access
kotlin.system.getTimeMillis
from a custom source directory? I have a shared
nativeMain
module, on which all my native modules depend. I couldn’t find any
std
native lib I could depend on
k
We faced a similar problem and ended up doing our own expect/actual for each platform. Annoying but it was the path of least resistance in the end.
👍 1
m
s
Thanks for the replies. Currently depending on date time but going the more annoying route with expect/actual since it’s for a library and only for that method