I\'ve tried gradlew clean and every other solution available here and on GitHub but the error doesn\'t match and solution doesn\'t work
Error on cmd A
Open the /android/app/build.gradle file.
Under dependencies we need to add the module, and then enable it within defaultConfig
android { defaultConfig { // ... multiDexEnabled true } // ... } dependencies { implementation 'com.android.support:multidex:1.0.3' }