I have the following class
import com.android.annotations.NonNullByDefault; @NonNullByDefault public final class Log { ... }
and here
Open gradle.properties and use following code:
gradle.properties
android.useAndroidX=false android.enableJetifier=false
or U can use these dependencies too:
implementation 'androidx.appcompat:appcompat:1.0.2' implementation 'androidx.annotation:annotation:1.0.2'