错误: 程序包android.support.annotation不存在

在进行安卓开发的时候,使用
@BindView(R.id.wavesfv) WaveSurfaceView waveSfv;时导入
import butterknife.BindView;
import butterknife.ButterKnife;
在debug的时候显示错误: 程序包android.support.annotation不存在,
在 import android.support.annotation.CallSuper;
import android.support.annotation.UiThread;build/debug文件夹中的xxx.java文件中显示
Cannot resolve symbol ‘annotation’,并且 @UiThread, @CallSuper注解标红,无法使用(本项目经过Android迁移到Androidx)。
解决方案:打开project Structure(快捷键Ctrl+Alt+Shift+s)选定你的项目,错误: 程序包android.support.annotation不存在_第1张图片
选择Dependencies,然后点击+号,查找最新版的butterknife并导入

com.jakewharton:butterknife:10.1.0(根据自己的版本选择)

你可能感兴趣的:(错误: 程序包android.support.annotation不存在)