Hi, it seems like Kotlin 1.1.4 generates invalid J...
# announcements
s
Hi, it seems like Kotlin 1.1.4 generates invalid Java stubs when kapt is used. For instance we have code like
val postalCodeChangeListener = object : TextWatcher by EmptyTextWatcher { ... }
where
EmptyTextWatcher
is just an implementation of the
TextWatcher
interface with empty methods. Kotlin 1.1.4 generates
private final android.text.TextWatcher<app.api.models.shop.customer.ApiAddress> postalCodeChangeListener = null;
. So a type argument is added to the
TextWatcher
interface however the interface doesn’t have a type argument.