当前位置: 代码迷 >> 综合 >> 【Android开发】is also present at [androidx.core:core:1.2.0]
  详细解决方案

【Android开发】is also present at [androidx.core:core:1.2.0]

热度:1   发布时间:2024-02-26 19:25:26.0

今天在运行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'
}

 

  相关解决方案