Sunday, March 18, 2012

Android Binary XML

I have created a library for parsing the binary XML-files that is created inside Android APK files.
var reader = new AndroidXmlReader(stream);  
var doc = XDocument.Load(reader);  
To download the source code, visit: androidxmldotnet.codeplex.com

1 comment:

Anonymous said...

Thank you so much! This saved me so much time! Was not looking forward to implementing this. It is by far the only AndroidXML reader for c# and works right out of the box.