我最近将我的应用程序从AppCompat迁移到了Androidx,但现在GlideApp面临严重问题。每当我尝试构建项目时,都会显示编译失败。
我尝试更改以下导入语句,
import android.support.annotation.CheckResult;
import android.support.annotation.NonNull;
在构建文件夹中:
import androidx.annotation.CheckResult;
import androidx.annotation.NonNull;
但是,每当我重建它时,它只会重新生成以前的import语句并返回以下错误:
错误:包android.support.annotation不存在错误: 找不到符号类NonNull
答案 0 :(得分:0)
我通过在应用程序build.gradle中的依存关系中添加annotationProcessor 'androidx.annotation:annotation:1.1.0'
来找到此修复程序,并且能够毫无错误地构建项目。
从此处获得解决方案:https://github.com/bumptech/glide/issues/3080#issuecomment-426331231