I\'ve migrated my project to AndroidX cause i was having some errors, but now i\'m receiving a loop of errors that the androidX class has a different version from the compil
If the problem persists, you might want to upgrade the gradle version in android/build.grandle
Change:
dependencies { classpath 'com.android.tools.build:gradle:3.2.1' }
To:
dependencies { classpath 'com.android.tools.build:gradle:3.3.1'//latest version }
You should also update your Kotlin version.