Hi guys I am using using `Kotlin class with non nu...
# android
v
Hi guys I am using using
Kotlin class with non nullable properties
with
Parcelable
to capture network response. I get a
warning
NULLABILITY_MISMATCH_BASED_ON_JAVA_ANNOTATIONS
for the non nullable property which I guess means that I
should use nullable property
with
Parcelable
. I want to increase the severity of
NULLABILITY_MISMATCH_BASED_ON_JAVA_ANNOTATIONS
to
error
using
Android Lint
but adding
Copy code
<lint>
    <issue id="NULLABILITY_MISMATCH_BASED_ON_JAVA_ANNOTATIONS" severity="error"/>
</lint>
to
lint.xml
does not work. Can any body help me identify what I am doing wrong here.