I am working on a cordova project that has been working fine for a while, and suddenly I started to get a very strange error whenever the build reaches \":app:processArm64De
I tried the solution shown here, and now, I built successfully with Android.
Open file platforms/android/app/build.gradle
file platforms/android/app/build.gradle
add
configurations.all { resolutionStrategy { force 'com.android.support:support-v4:27.1.0' } }
after
dependencies { ... }