I created a dialogue system for my game that takes in a .xml project file.
Steps:
1. Use AJAX to call the project file
2. On return, loop through the XML dialogue elements
3. Display the dialogue elements until the end of the conversation
On PC, this works perfectly.
When I export to Android APK, it fails. No errors, nothing.
I ended up downloading Android Studio, and the error I'm getting in there is "Cannot find "JoeIntro0.xml". I also found an additional line that's looking for "www/JoeIntro0.xml".
I did a search in my android studio project for that file and it DOES exist in there in the path specified. I'm not sure what to do.
Has anyone had issues with Android AJAX calls in Android before?