This project uses AndroidX dependencies, but the ‘android.useAndroidX‘ property is not enabled. Set
android studio的报错提示:
:app:checkDebugAarMetadata
This project uses AndroidX dependencies, but the ‘android.useAndroidX’ property is not enabled. Set this property to true in the gradle.properties file and retry
This project uses AndroidX dependencies, but the ‘android.useAndroidX’ property is not enabled
报错信息可能是android support包与androidx冲突问题
我使用的是android support包
先看一下Project的External Libraries中有没有androidx库:
找到androidx库了,就知道androidx的依赖包我刚添加了,如下:
implementation 'com.github.bumptech.glide:glide:4.10.0'
这依赖包的4.10.0版本开始引用androidx库,那试试改回退到3.7.0版本(androidx库转换android库)
implementation 'com.github.bumptech.glide:glide:3.7.0'
点击右上角“Sync now”同步新编译,依赖androidx库转换成android库成功,看来问题解决了,External Libraries如下图:
更多推荐
所有评论(0)