-
Notifications
You must be signed in to change notification settings - Fork 50
Open
Labels
Description
Is there a way to retrieve the mappings from obfuscated to real class/package name? This would be very useful if I want to do some analysis on the library files as found in the app - which for various reasons may not 100% match the files in the original library JAR (e.g. due to dead-code elimination).
Example:
{
"libName": "Facebook",
"package-mappings": {
"a.a.a": "com.facebook.applinks".
"a.a.b": "com.facebook.login",
...
},
...
}
Or even
{
"libName": "Facebook",
"class-mappings": {
"a.a.a.a": "com.facebook.applinks.AppLinkData".
"a.a.a.b": "com.facebook.applinks.FacebookAppLinkResolver",
...
},
...
}