Add android:name=“something” to AndroidManifest.xml “application” tag from Cordova plugin.xml
I decided to open new question because none of those that are already posted, has a good answer. I need to update AndroidManifest.xml "from plugin.xml" , so that the <application> tag has the following property, alongside those it already has: android:name="mypackage" How can do that? Thank you ndeverge I had the same issue, and I used a Cordova hook to do the work. First, edit your config.xml file to add the hook: <platform name="android"> <hook type="after_prepare" src="scripts/android_app_name.js" /> </platform> Create a file called scripts/android_app_name.js (set it executable), and