# Android XML parser for .NET **Repository Path**: pNull/Android-XML-parser-for-.NET ## Basic Information - **Project Name**: Android XML parser for .NET - **Description**: 解析Android AndroidManifest.xml文件类,使用.net实现 http://androidxmldotnet.codeplex.com/ - **Primary Language**: C# - **License**: Not specified - **Default Branch**: master - **Homepage**: http://androidxmldotnet.codeplex.com/ - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2021-08-04 - **Last Updated**: 2021-08-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ####Project Description A library for parsing Android binary XML format. You could use it to parse AndroidManifest.xml inside the APK files. ####Overview - The 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 [Just an application: Android Internals: Binary XML](http://justanapplication.wordpress.com/2011/09/22/android-internals-binary-xml-part-two-the-xml-chunk/) - A description of the format used. Last edited Mar 18, 2012 at 11:53 PM by MizardX, version 4