mirror of
https://github.com/revanced/Apktool.git
synced 2025-06-12 05:07:41 +02:00
Fixed "-d" option of build command - it was always enabled.
This commit is contained in:
@ -74,7 +74,7 @@ public class SmaliBuilder {
|
||||
StringBuilder out = new StringBuilder();
|
||||
List<String> lines = IOUtils.readLines(inStream);
|
||||
|
||||
if (!mFlags.containsKey("debug")) {
|
||||
if (!mFlags.get("debug")) {
|
||||
final String[] linesArray = lines.toArray(new String[0]);
|
||||
for (int i = 1; i < linesArray.length - 1; i++) {
|
||||
out.append(linesArray[i].split("//", 2)[1]).append('\n');
|
||||
|
Reference in New Issue
Block a user