For anyone else having this error maybe my experiance can help. I just spent about 20 hours trying to find what was wrong with my code. To avoid stuff like this I always have my file names in all lowercase so I couldn’t figure out what was wrong. I checked, tripple checked, and check like 5 more times and all of my file names and references matched perfectly.
It was especially hard because you don’t see the debug window when testing on the device. So you have NO idea where the problem might be. I used this Android Log Collector app: http://code.google.com/p/android-log-collector/downloads/list and it helped the process a lot. Still was a nightmare to find the issue.
Turned out in one of my file names (just one) I had a slash before a the reference to a folder. So it was: “/folder/file.png” I took out the first / so it was “folder/file.png” and POOF! everything worked perfectly. Such an annoying problem but I’m glad I could finally find the issue. Hopefully that helps anyone else out there.
One suggestion to Corona Labs. Perhaps you could print an error message in the simulator’s debug window that would cover this error. The simulator could check to see if there might be a problem with mismatching file names and then warn the dev when that’s the case. The fewer surprises when testing on device the better. Thanks! [import]uid: 94309 topic_id: 33687 reply_id: 138628[/import]