mirror of
https://github.com/revanced/Apktool.git
synced 2025-01-05 17:45:52 +01:00
Switch the default for implicit references
This commit is contained in:
parent
97c52167cf
commit
d9e5b0a487
@ -75,7 +75,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…
Reference in New Issue
Block a user