I Have no idea why I am getting this error whenever I try to create my app\'s build.I have tried many solutions but I was unable to solve this.i don\'t know if any plugins
This issue occurs due to major firebase release to support AndroidX
Solution:
Remove android platform(I followed this step. but there should be workaround which I might not know) - cordova platform rm android
Remove old firebase plugin -
cordova plugin rm cordova-plugin-firebase
Add new firebase plugin -
cordova plugin add cordova-plugin-firebasex
Again add platform -
cordova platform add android
Now your build will succeed.