andreasmattsson
08/08/2017, 12:29 PM@JvmStatic
and @Throws
annotations thrown in there. These are however giving me error: Unresolved reference
in the compileConan task.
Anyone got suggestions for how to deal with this with a common codebase? I thought maybe I'd create typealiases to dummy annotations for these in the Kotlin/Native library. But then I don't know how to deal with the annotation argument for Throws... (KClass also doesn't exist for Native).
edit: (using the Konan Gradle Plugin)russhwolf
08/08/2017, 2:31 PMkyonifer
08/08/2017, 3:10 PMkyonifer
08/08/2017, 3:13 PMkoma.polyfill.*
, which then brings in the right annotations for the platform (i.e. when building on the jvm you cant include those defs twice or it'll error)jw
08/08/2017, 4:30 PMandreasmattsson
08/08/2017, 8:23 PM