今天在运行Android工程时遇到入下的问题。这个在之前工程代码还是好好的。看着提示是Android版本兼容性问题。
在依赖包里查看到关于Androidx的依赖包
经过排查原来是下面的这个依赖早已经从Android迁移到Andoidx。
implementation 'com.github.pratikbutani:MultiSelectSpinner:-SNAPSHOT'
该包依赖有Androidx
dependencies {implementation 'com.github.rey5137:material:1.2.2'implementation 'androidx.legacy:legacy-support-v4:1.0.0'implementation 'com.google.android.material:material:1.2.1'
}