How can i load an XML file in standalone version if it's stored in my "Assets/Resources/Data/Chapters/" project folder? No problems in editor mode.
string FilePath = Path.Combine(Application.dataPath + "/Resources/Data/Chapters/", ChapterName + ".xml");
if (File.Exists(FilePath))
_XPathSettings = new XPathDocument(FilePath);
else {...}
Thanks.