After migrating to Androidx packages using Android Studio menu option Refactor -> Refactor to Androidx...
I\'m getting the following error:
Error inf
Since the Android Studio is updated to 3.3 it will pop this error. I resolved it by upgrading the version for constraint layout in the build.gradle
of the app level:
implementation 'androidx.constraintlayout:constraintlayout:1.1.2'
TO
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'