REAndroid
REAndroid
@iBotPeaches ARSCLib/APKEditor resolves NS prefix on package name suffix rather than relying on uri last path segment. I don't remember where I read it but last segment of NS uri...
Thank you ! This will be the next milestone. For now if you need example for implementation of this project check [APKEditor](https://github.com/REAndroid/APKEditor)
@iBotPeaches I checked both files I may miss something or files changed now ? Here is md5 for files i downloaded: - 083a2f6c0bb7594d96f4badcbafa5dd2 13-35-9 - 50d04b19142e064adc5578a087546dce 13-37-9 Here is what...
> _ .. I can also help you implementing this if you choose to do this._ > I really appreciate and you are welcome do this. > The framework itself...
Sorry i misunderstood you, you are right it make sense for bin XML to have standard serializer. A developer have to go thru all lines of ResXmlDocument code to understand...
Check [ResXmlPullParser](https://github.com/REAndroid/ARSCLib/blob/main/src/main/java/com/reandroid/arsc/chunk/xml/ResXmlPullParser.java)
> 1. It returns `null` on missing references. It should return reference numbers (`@0xxxxxxxx` or `?0xxxxxxx`) so that they might be parsed later on. On which method ? > 2....
```getAttributeName``` If you can provide the values I can implement ```ResXmlPullParser#setDecoder(EntryStore entryStore, int currentPackageId)``` ```getAttributeValue``` I don't see any purpose of this method except for logging, if you gonna to...
> it has use-case when a dev is working with XmlPullParser interface rather than XmlResourceParser Convincing > and I think you should make geResXmlAttributeAt protected (maybe final) so that it's...
[Here](https://github.com/REAndroid/ARSCLib/commit/0ec2b3fe1c32af9fb42000a238078a567196a0ae) I tried to implement ```FEATURE_PROCESS_NAMESPACES``` & ```FEATURE_REPORT_NAMESPACE_ATTRIBUTES``` . I didn't check the exact implementation of AOSP, I just assumed: - ```FEATURE_REPORT_NAMESPACE_ATTRIBUTES``` means treat/count namespaces as attribute - ```FEATURE_PROCESS_NAMESPACES``` means...