Hello Android
Found this very insightful diagram of how Android SDK churns out Dalvik .dex files from Android java files here.
Found this very insightful diagram of how Android SDK churns out Dalvik .dex files from Android java files here.
Posted by Unknown at 3:06 PM 0 comments
Labels: android
For anyone parsing an XML file and wondering what in the world an org.xml.sax.SAXParseException: Invalid byte 1 of 1-byte UTF-8 sequence error message is, check to see whether the XML file has any special characters like the copyright symbol, ©. The default encoding of UTF-8 will choke on these.
Solved my woes by changing the encoding to <?xml version="1.0" encoding="iso-8859-1"?>
to get the character to display correctly. You can also filter it out or replace the symbol with its character reference.
Posted by Irregular Zero at 6:04 PM 0 comments