mirror of
https://github.com/revanced/smali.git
synced 2025-05-28 11:50:12 +02:00
Switch the default for implicit references
This commit is contained in:
parent
39c77fa5bd
commit
f5d3fc4a6d
@ -73,7 +73,7 @@ public class baksmaliOptions {
|
||||
public boolean deodex = false;
|
||||
public boolean ignoreErrors = false;
|
||||
public boolean checkPackagePrivateAccess = false;
|
||||
public boolean useImplicitReferences = true;
|
||||
public boolean useImplicitReferences = false;
|
||||
public File customInlineDefinitions = null;
|
||||
public InlineMethodResolver inlineResolver = null;
|
||||
public int registerInfo = 0;
|
||||
|
@ -206,7 +206,7 @@ public class main {
|
||||
options.setResourceIdFiles(rif);
|
||||
break;
|
||||
case 't':
|
||||
options.useImplicitReferences = false;
|
||||
options.useImplicitReferences = true;
|
||||
break;
|
||||
case 'e':
|
||||
options.dexEntry = commandLine.getOptionValue("e");
|
||||
@ -425,8 +425,8 @@ public class main {
|
||||
.withArgName("FILES")
|
||||
.create("i");
|
||||
|
||||
Option noImplicitReferencesOption = OptionBuilder.withLongOpt("no-implicit-references")
|
||||
.withDescription("Don't use implicit (type-less) method and field references")
|
||||
Option noImplicitReferencesOption = OptionBuilder.withLongOpt("implicit-references")
|
||||
.withDescription("Use implicit (type-less) method and field references")
|
||||
.create("t");
|
||||
|
||||
Option checkPackagePrivateAccessOption = OptionBuilder.withLongOpt("check-package-private-access")
|
||||
|
Loading…
x
Reference in New Issue
Block a user