I am using Ionic 6 with React. I run the following command to start up Android emulator:
ionic cap run android -l --external --target Pixel_5_API_33
The emulator starts up, but right away the AndroidManifest.xml file get updated and an AndroidManifest.xml.org file is added.
When I shut the emulator down, everything goes back to normal. In other words, the changes to the AndroidManifest.xml are reverted and the AndroidManifest.xml.org is deleted.
I believe what you’re seeing is the XML file getting updated to correctly handle the live reload parameter. It needs to be run differently to support that mode, so it updates the XML file with the relevant changes, then reverts those changes when you stop running.