1

There are 1 answers

0
AudioBubble On BEST ANSWER

I got the same issue you can use this link as an reference

(Getting Androidx library issue even though its not enabled in android project)

or

You can directly Try to change minimum Android version >= 21 in your build.gradle

android {
    compileSdkVersion 28
    buildToolsVersion '28.0.3'

    defaultConfig {
        applicationId "app.com.app"
        minSdkVersion 21
}