Skip to content

Commit

Permalink
Merge pull request #54 from Kirlif/baksmali_sequential-labels
Browse files Browse the repository at this point in the history
SmaliDecompiler creates label names using a sequential numbering scheme
  • Loading branch information
REAndroid authored Jul 25, 2023
2 parents d618eaa + a949747 commit 119ad41
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ private void disassembleDexFile(DexFileInputSource inputSource, File mainDir) th
File dir = toOutDir(inputSource, mainDir);
BaksmaliOptions options = new BaksmaliOptions();
options.localsDirective = true;
options.sequentialLabels = true;
options.setCommentProvider(getComment());
DexBackedDexFile dexFile = getInputDexFile(inputSource, options);
Baksmali.disassembleDexFile(dexFile, dir, 1, options);
Expand Down

0 comments on commit 119ad41

Please sign in to comment.