Hi all, having a weird issue with a library I’m wo...
# multiplatform
k
Hi all, having a weird issue with a library I’m working on. in
commonMain
i have a class like so
Copy code
class Test {
   constructor(a: Long) {
   ...
   }

   constructor(b: Int, c: String) {
   ...
   }
}
but if I try to reference a constructor from an android application I get an error of:
java.lang.NoSuchMethodError: No virtual method Int$class-Test()I in class [testKt]; or its super classes (declaration of '[testKt]' appears in [apk])
Am I doing constructors wrong?