Error错误“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”是小编在引入dotsindicator这个依赖包的时候,报的,这个错误的原因是dotsindicator这个包需要AndroidX 的支持才行。
错误解决方案:
在Android Studio里面的gradle.properties中加入这样一行代码,然后点“Sync Now”按钮即可:
android.useAndroidX=true