Issues were found when checking AAR metadata: androidx.core:core:1.12.0-alpha01 and androidx.core:core-ktx:1.12.0-alpha01

I had the same error today, and this is what fixed it for me: check in all your library modules for this import in the build.gradle files (you can search in Android Studio in the EditFindFind in Files… menu option):

implementation 'androidx.core:core-ktx:+'

Replace it with the latest stable version to avoid the error:

implementation 'androidx.core:core-ktx:1.9.0'

Synchronise your project and the errors should be gone!

Leave a Comment