解决:This project uses AndroidX dependencies, but the 'android.useAndroidX' property is not enabled.

今天在添加百度语音识别依赖到我自己的android项目中的时候,android studio突然报错:This project uses AndroidX dependencies, but the ‘android.useAndroidX’ property is not enabled.
解决:This project uses AndroidX dependencies, but the 'android.useAndroidX' property is not enabled._第1张图片
很是费解。
不过最后找到了解决方法:
打开下图选中的文件,
解决:This project uses AndroidX dependencies, but the 'android.useAndroidX' property is not enabled._第2张图片
在这个文件里添加两行代码,

android.useAndroidX=true
android.enableJetifier=true

如图所示
解决:This project uses AndroidX dependencies, but the 'android.useAndroidX' property is not enabled._第3张图片
然后直接同步,点击Sync now,发现解决。
解决:This project uses AndroidX dependencies, but the 'android.useAndroidX' property is not enabled._第4张图片
检查发现之前添加的依赖文件确实已经出现在工程里。

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