In Android Studio 4.2 beta 1, whenever I implement a method annotated with the androidx version of @Nullable, the IDE is automatically adding the jetbrains @Nullable annotation as well.
This is extremely annoying as it results in code like:
@Nullable
@org.jetbrains.annotations.Nullable
@Override
public String foo(@Nullable @org.jetbrains.annotations.Nullable String bar) {
return null;
}
Any way to prevent this?
configure annotations
option is not in Android studio 4.2 beta 1. I believe the next release of Android Studio migrates to IDEA 2020, so it'll probably be there then. – Thremmatology