If I need to make some updates in my cordova application (HTML, JS, CSS) in a few months or weeks, running cordova build android --release --buildConfig gives me an error.
Typically, opening android studio and installing all updates fixes the bugs.
Data:
- I did not delete the platform
- The last time it worked was just fine
- No update was made on my laptop, Android studio or any software.
It seems that over time, the cordova code remains outdated, and the assembly knows this and forces me to update for the assembly.
How can I get the cordova project to support its own core resources / plugins and be able to create my JS / HTML / CSS without worrying if the latest Android SDK does not match the version of the plugin or cordova?
source share