Hi, I'm getting a very weird issue when enabling c...
# compose
a
Hi, I'm getting a very weird issue when enabling compose (v1.0.1 with kotlin v1.5.21). Somewhere I have a class extending
SpannableStringBuilder
which internally calls the method
SpannableStringBuilder#length()
via a property call to
length
. Just by turning on compose (literally just adding the
compose true
block in build.gradle) I get this weird runtime crash, without compose I don't get this crash:
Copy code
Caused by: java.lang.NoSuchMethodError: 'int com.company.test.MentionsEditable.getLength()'
Which is very weird because the parent`s class method is
length()
and not
getLength()
... 😞 This looks related https://issuetracker.google.com/issues/195318446