Is there a Kotlin library (lnter) for keeping API ...
# getting-started
i
Is there a Kotlin library (lnter) for keeping API declarations in check? (I would like to make sure that lib API will not change by accident)
c
https://github.com/Kotlin/binary-compatibility-validator It technically only validates JVM and Android APIs, but if most/all of your code is in commonMain and you support JVM targets, then it works great
plus1 2