Varun Sharma
08/23/2019, 6:25 AMKotlin 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 <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.