error: package com.android.annotations does not exist

后端 未结 13 2356
南旧
南旧 2020-12-13 11:55

I have the following class

import com.android.annotations.NonNullByDefault;

@NonNullByDefault
public final class Log {
    ...
}

and here

13条回答
  •  臣服心动
    2020-12-13 12:32

    Use implementation androidx.appcompat:appcompat:1.0.2 in gradle and then

    change import android.support.annotation.Nullable; to import androidx.annotation.NonNull; in the classes imports

提交回复
热议问题