diegomesata opened a new issue, #1633: URL: https://github.com/apache/cordova-android/issues/1633
# Bug Report ## Problem If I add a custom setting to the config.xml file using config-file, build, and later I delete it, and build again, the custom setting will remain in the AndroidManifest.xml ### What does actually happen? 1. Add a custom setting to the config.xml file using config-file, by example "testx": <platform name="android"> ..... <config-file parent="/*" target="AndroidManifest.xml"> <testx value="1" /> </config-file> </platform> 2. Run cordova build android. The AndroidManifest.xml is modified and the custom setting "testx" is added: <manifest .... <testx value="1"/> </manifest> 3. Delete the custom setting "testx": <platform name="android"> ..... </platform> 3. Run cordova build android. The "testx" remains in the AndroidManifest.xml. <manifest .... <testx value="1"/> </manifest> I tried remove it directly from the AndroidManifest.xml but the custom settings appers again on build. ### What is expected to happen? The custom settings should be removed. <manifest .... </manifest> ### Version information cordova-lib@12.0.1 node v16.20.0 windows 11 ## Checklist <!-- Please check the boxes by putting an x in the [ ] like so: [x] --> - [x] I searched for existing GitHub issues - [x] I updated all Cordova tooling to most recent version - [x] I included all the necessary information above -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org For additional commands, e-mail: issues-h...@cordova.apache.org