JakeWharton / jardiff

A Python script which quickly creates diffs of the public API between two JAR files
Apache License 2.0
186 stars 16 forks source link

APK format support #2

Open thypon opened 10 years ago

thypon commented 10 years ago

JAR contained in /system/framework are in APK format: they contains a classes.dex and resources. Could be possible to extend jardiff to support these files?

JakeWharton commented 10 years ago

The problem here is that you need to extract the dex and then either parse its classes and methods in the same format as javap or run a decompiler.

I'm not sure if something like that should be considered in scope. I'll accept a PR but I'm not going to implement it myself.