iBotPeaches / Apktool

A tool for reverse engineering Android apk files
https://apktool.org/
Apache License 2.0
20.33k stars 3.59k forks source link

fix: avoid trying to parse raw AndroidManifest #3720

Closed IgorEisberg closed 2 weeks ago

IgorEisberg commented 2 weeks ago

Recording feature flags moved to ResourcesDecoder to fix an issue where raw AndroidManifest is attempted to be parsed even when decoding without resources.

Replaced remaining usages of FileInputStream/FileInputStream with their NIO equivalents for consistency with rest of code.

Minor redundancy and format tweaks.

iBotPeaches commented 2 weeks ago

thanks!