Where can I put xml on android?

codes:

XmlDocument.Save(“data.xml”);
It’s work well on pc!But on android mobile it’s not work!?

I know this code save data.xml in program’s root file!

Where it’s put data.xml on android mobile? Thanks!

How to put xml on android by any path?Or how to select path on android?

Use Application.persistentDataPath or Application.temporaryCachePath as a prefix to your files.

Thank you very much!