How to solved this React native error "Task :app : checkDebugAarMetadata FAILED"

Viewed 20

build.gradle

buildscript {
ext {
    buildToolsVersion = "30.0.2"
    minSdkVersion = 24
    compileSdkVersion = 30
    targetSdkVersion = 30
    ndkVersion = "21.4.7075529"
}
repositories {
    google()
    mavenCentral()
}
dependencies {
    classpath("com.android.tools.build:gradle:7.0.4")
    classpath("com.facebook.react:react-native-gradle-plugin")
    classpath("de.undercouch:gradle-download-task:4.1.2")
    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
}

How to solve "Task :app:checkDebugAarMetadata FAILED" this React native error

enter image description here

0 Answers
Related