Reputation: 18237
Earlier I asked this question.
Web Storage in Cordova app get carried over even if app is removed
The solution works for a HelloWorld sample project; however, on my existing project, everytime I do a cordova build
my android xml name space (xmlns:android) is gone and I'll get an unbound prefix error. Any idea?
Upvotes: 0
Views: 658
Reputation: 316
I had this exact issue, the easy resolution is running a cordova clean before running any ionic build etc again.
xmlns:cdv="http://cordova.apache.org/ns/1.0"
to the widget tag in [project root]/config.xmlcordova clean; ionic cordova build android
You'll be able to see it maintains the tag you added in config.xml
Upvotes: 1