Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
APK 文件是 .zip 文件,我们可以解压它们,这很简单!但我发现里面的 XML 文件不是普通的 XML 文件(可能是二进制文件?)我的问题是如何将这些文件反编译为原始形式?
我不想使用任何工具,我只需要知道这些奇怪的 XML(二进制?)文件的正式定义,以便能够解码它们!
您可以随时尝试查看 android-apktool 等工具的代码。二进制 xml 文件的结构格式在任何地方都没有很好的记录。必须从 android-apktool、aapt 等工具的源代码中推断出来。