I see in the Lint documentation: <https://develope...
# android
d
I see in the Lint documentation: https://developer.android.com/studio/write/annotations.html#res-annotations
When adding nullness annotations, autocomplete may suggest the IntelliJ @Nullable and @NotNull annotations instead of the Android null annotations and may auto-import the corresponding library. However, the Android Studio Lint checker only looks for the Android null annotations. When verifying your annotations, confirm that your project uses the Android null annotations so the Lint checker can properly notify you during code inspection.
How does it play with Kotlin, which uses JetBrain ones? Is this still valid with AS 3.1? was it a problem in older versions?