I have the following class
import com.android.annotations.NonNullByDefault; @NonNullByDefault public final class Log { ... }
and here
In my case I had to use
import androidx.annotation...
instead of
import android.annotation...
I migrated to AndroidX and forgot to change that.