REAndroid
REAndroid
[Here](https://github.com/REAndroid/ARSCLib/commit/b8d410803d7c74f2df5e02b03235b3af8fbba778) I tried strict implementation of XMLPULL. I am not sure I got it
@MuntashirAkon If you are still on this project, here is the serializer part [d9daea5](https://github.com/REAndroid/ARSCLib/commit/d9daea59fffc913ab3aba43b864a477c96cf467e)
The reason I changed to ```UNK_*``` format is to support xml parsers for correct parsing of attribute **name** `````` will throw exceptions due to character "**@**".
> 1. `UNK_` (or `unk_`) _cannot_ be a unique identifier for attribute names. I would suggest using a shorter prefix that has hyphens in it (for example, `r-`) since it's...
Thank you for brief suggestion ! > The [attribute name documentation](https://www.w3.org/TR/xml/#NT-Name) only suggest a handful of usable ASCII Characters `0xd8 Ø` and `0xf8 ø` catches my attention I am thinking...
> As per the the docs, the actual name is http://schemas.android.com/tools:0x7f0403c0 not just 0x7f0403c0. So, this should be allowed. Prefix doesn't count as a part of attribute name, unless you...
Nice suggestions , I will try with `r0x7f0403c0`
[Now](https://github.com/REAndroid/ARSCLib/commit/03ad33b736c047519616e17926e7c36e1a43c3f6) unknown resource ids are decoded as: - attribute name `r0x12345678` - reference value type `@0x12345678` - attribute value type `?0x12345678` NB: Use the new xml encode/decode class [XmlCoder](https://github.com/REAndroid/ARSCLib/blob/8232253a3bfb10e719759dde992023e317ffbdf3/src/main/java/com/reandroid/arsc/coder/xml/XmlCoder.java) the...
> Really useful tool!Hope you fix it.Thanks very much Check this tool: [https://github.com/REAndroid/APKEditor](https://github.com/REAndroid/APKEditor)
Can't help without sample