Add the missing SLF4J dependency:
The error indicates that the org.slf4j.impl.StaticLoggerBinder
class is missing. This is typically required by some logging libraries.
Add this to your android/app/build.gradle
file:
dependencies {
implementation 'org.slf4j:slf4j-nop:1.7.30' // Add this line
}