Hi Everyone, We have an Android SDK written in Kotlin. Our SDK can be consumed in Apps written in Kotlin as well as Java. We're trying to add an optional method in an interface (i.e with default implementation
fun method(){}
). Kotlin based Apps won't complain about new method while Java based Apps will complain about implementing the new method added to the interface. Is there any thing we can do so that it's not a breaking change for Java based apps?