Hi Folks i created custom library (Module) for on...
# multiplatform
n
Hi Folks i created custom library (Module) for one particular feature (example validation) which i need to use in kmm commonMain how can i add that dependency of my custom library which is already release on Jforg i added in commonMain like below
Copy code
implementation("com.example.corevalidation:corevalidation:1.0.0")
after adding above library i am not able to create any kotlin file in shared module and getting below error while running whenever i try to pass parameter in to class like below open class *Field*(props: FieldProps){} getting below error e: org.jetbrains.kotlin.backend.common.BackendException: Backend Internal error: Exception during IR lowering Any Help?