Hello, I have a question. Kotlin has a tool to ens...
# library-development
b
Hello, I have a question. Kotlin has a tool to ensure binary compatibility. Is there anything similar for code compatibility? I have some modules to help to test other modules. In those I don't care about binary compatibility but I would like to keep the code compatibility.
m
I don't think so, this was a no-goal in BCV
You might try metalava. It detects some of them IIRC (like parameter names). But probably not 100%
b
I'll take a look. Thanks!