Android项目转AndroidX时遇到的问题

怎么转就不说了,网上的帖子实在是太多了,主要说一下转完之后不能正常编译的问题,真的是要坑死啊,我弄了整整一天,其实,还是不仔细造成
1.出现找不到包
import android.support.annotation.CheckResult;
import android.support.annotation.NonNull;
我真的思前想后,想不通为啥,不都转AndroidX了吗?怎么还会出现这个问题,肯定是依赖库的版本不对,
解决方法,就是把依赖库升级到最新的
我修改了三个依赖库就好了

annotationProcessor ‘com.github.bumptech.glide:compiler:4.8.0’
implementation ‘com.jakewharton:butterknife:10.1.0’,
annotationProcessor ‘androidx.annotation:annotation:1.1.0’
然后,完美解决,如果你的还是存在这个问题,那就把依赖库都升级一下吧

你可能感兴趣的:(android,studio,android)