原因:第三方依赖库里使用了高版本的androdx.core,而项目本身使用的版本低于该版本
解决:强制使用固定旧版本的androidx.core
app - build.gradle - defaultConfig节点里添加:
configurations.all {resolutionStrategy { force 'androidx.core:core:1.6.0' }}
*另若错误信息为以下这串也可以尝试以上方法:
The minCompileSdk (31) specified in XXXXXX is greater than this module's compileSdkVersion (android-29). Dependency: androidx.core:core:1.7.0.