missing default translation for menu_settings
plugin.xml is missing the default translation (android) for 'menu_settings'. The following warning is thrown by aapt when building project [aapt] aapt : warning : string 'menu_settings' has no default translation
I'm getting this as well, through Visual Studio 2015. Annoyingly, I don't even need the translations. Is there a workaround?
I had to manually change the plugin.xml file. You can also try the newer version at [phonegap/phonegap-plugin-barcodescanner] http://github.com/phonegap/phonegap-plugin-barcodescanner since this is the new official repository for the barcodescanner
I suspect it doesn't matter, VS2015 won't deploy even a most basic example on any platform, so the point could be moot. I have a non-VS version that works though. Thanks anyway.
upgrading my project from vs2013 to vs2015 for cordova tools and got the same message, when you say you modified the plugin.xml what exactly did you add/change? Even the updated plugin referenced above threw this exception on build for android.
I added the missing default string in the plugin.xml file.
Open the plugin.xml, search for the string menu_history and add the following line after this element
I fixed this error added <string name="menu_settings">Settings</string> in plugins.xml
I fixed this error added
<string name="menu_settings">Settings</string>in plugins.xml
Thanks, solved for me!