Describe the bug
My interface ViewRenderer has a single public method - Render
fun Render(model: T, modifier: Modifier)
When the modifier has a default value there is an error during the build
e: kotlin.NotImplementedError: An operation is not implemented: Unknown file
To Reproduce
Steps to reproduce the behavior:
Modify the interface to have default value:
fun Render(model: T, modifier: Modifier = Modifier)
Expected behavior
Should build fine
Actual behavior
Error thrown:
e: kotlin.NotImplementedError: An operation is not implemented: Unknown file
Environment
- Samsung s22
- Main
- Prod (Y/N) N
Additional context
Related to dependency injection