Answers for "how to uninstall all plugins in ionic app"

4

uninstall cordova plugin

cordova plugin remove <PLUGIN_NAME>
Posted by: Guest on October-13-2020
1

how to uninstall all plugins in ionic app

// First, you should list your plugins:
cordova plugin list

// With this result, you can simply do:
cordova plugin remove <PLUGIN_NAME>

// For example:
cordova plugin remove org.apache.cordova.media

Hope it helps.
Posted by: Guest on November-20-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language