I wrote a little logger library in kotlin and package it to logger.jar.
object Logger {
public fun info (...) { ...}
}
But the compiler complains : " Unresolved reference: info " when it's invoked in another kotlin file.
I don’t know why ?
outersky