Loboda Deni
09/15/2022, 6:23 PM@JsName("getKClass1")
internal fun <T : Any> getKClass1(jClass: JsClass<T>): KClass<T> {
if (jClass === js("String")) return PrimitiveClasses.stringClass.unsafeCast<KClass<T>>()
val metadata = jClass.asDynamic().`$metadata$` <--- error here
Loboda Deni
09/15/2022, 6:47 PMinclude(":clean:feature:asset:list:domain")
include(":clean:feature:asset:list:presentation")
include(":clean:feature:employee:list:domain")
include(":clean:feature:employee:list:presentation")
include(":clean:feature:auth:domain")
include(":clean:feature:auth:presentation")
I found that files with the same names "presentation.js" and "domain.js" are created for all modules - because of this, the error occurs. Does anyone know how to make sure that the correct names for files are formed?Loboda Deni
09/15/2022, 7:01 PM