What it means is that the runtime (not the compiler this time) thinks it has found a string that's not complete (which I'm sure you already surmised).
The fact that its at runtime means that there is nothing obvious in your code itself, or the compiler would have caught it. I've seen something similar to that caused by an encoding problem in some file (i'd check the XML files). Essentially there was to different charsets in a single file or a unicode char not expected etc... this can happen if you copy and paste content from one place to another. Note: I don't *know* thats what the problem is, just that I've seen something in the past that makes my think you might want to check for that kind of problem. Finding it is harder... but if you can load your file in an basic editor that doesn't understand unicode, you should see it right away. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

