I have had to manually add some external @Nullable...
# android
t
I have had to manually add some external @Nullable annotations to some Android methods - Service:onStartCommand, Prference:OnCreate, etc. - in order to work around exceptions in the Kotlin stdlib (I think) that is throwing an assert when running. Is this to be expected? Is there a better way to handle this case? For example, if I annotate my overloaded method with Intent? can the compiler figure out that the super should be @Nullable even if not annotated as such?