Project DescriptionA library for parsing Android binary XML format. You could use it to parse AndroidManifest.xml inside the APK files.
OverviewThe library implements three interfaces for reading Android binary XML files:
- AndroidXmlReader implements System.Xml.XmlReader for compatibility with other XML libraries.
- ResReader can be used to read the basic chunks of the file. This is used by AndroidXmlReader.
- ResWriter can be used to write the basic chunks of the file.
Example
var reader = new AndroidXmlReader(stream);
XDocument doc = XDocument.Load(reader);
Useful links