Skip to content

Commit 80b3b9d

Browse files
committed
Make internal dex library default
1 parent 6505eb0 commit 80b3b9d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/main/java/com/reandroid/apkeditor/compile/BuildOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public class BuildOptions extends OptionsWithFramework {
7575
},
7676
description = "dex_lib"
7777
)
78-
public String dexLib = DEX_LIB_JF;
78+
public String dexLib = DEX_LIB_INTERNAL;
7979

8080
@OptionArg(name = "-sig", description = "signatures_path")
8181
public File signaturesDirectory;

src/main/java/com/reandroid/apkeditor/decompile/DecompileOptions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public class DecompileOptions extends OptionsWithFramework {
8282
},
8383
description = "dex_lib"
8484
)
85-
public String dexLib = DEX_LIB_JF;
85+
public String dexLib = DEX_LIB_INTERNAL;
8686

8787
@OptionArg(name = "-smali-registers", flag = true, description = "smali_registers")
8888
public boolean smaliRegisters;
@@ -96,7 +96,7 @@ public class DecompileOptions extends OptionsWithFramework {
9696
},
9797
description = "comment_level"
9898
)
99-
public String commentLevel = COMMENT_LEVEL_FULL;
99+
public String commentLevel = COMMENT_LEVEL_DETAIL;
100100

101101
@OptionArg(name = "-sig", description = "signatures_path")
102102
public File signaturesDirectory;

src/main/resources/strings/strings.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ decode_types=Decode types\:
4949
decode_usage=d [Options, flags]
5050
dump_dex_markers=Dumps dex markers (applies only when smali mode).
5151
duplicate_option_exception=Duplicate option '%s'
52-
dex_lib=Dex library to use\:\n 1) internal : Use internal library, supports dex versions up to 042.\n 2) jf : Use library by JesusFreke/smali, supports dex versions 035 and below.\n *Default = jf\n **WARN: The default value will be replaced by "internal" on coming versions.\n *See <Notes> below.
52+
dex_lib=Dex library to use\:\n 1) internal : Use internal library, supports dex versions up to 042.\n 2) jf : Use library by JesusFreke/smali, supports dex versions 035 and below.\n *Default = internal\n *See <Notes> below.
5353
dex_protect_level=Dex protection level (0-5).\n 0 - Off\n 1 - Basic\n 2 - Normal (Not implemented yet)\n 3 - High (Not implemented yet)\n 5 - High (Not implemented yet)\n * Default 0
5454
empty_command_args_exception=Empty command, run with -h to get help
5555
empty_command_option_exception=Empty options, run with <command> -h to get help

0 commit comments

Comments
 (0)