I have the following class
import com.android.annotations.NonNullByDefault; @NonNullByDefault public final class Log { ... }
and here
Use implementation androidx.appcompat:appcompat:1.0.2 in gradle and then
androidx.appcompat:appcompat:1.0.2
change import android.support.annotation.Nullable; to import androidx.annotation.NonNull; in the classes imports
import android.support.annotation.Nullable;
import androidx.annotation.NonNull;