mirror of
https://github.com/Genymobile/scrcpy.git
synced 2025-12-17 13:34:20 +01:00
Remove [] around app package names
This simplifies copy-pasting from the result of:
scrcpy --list-apps
This commit is contained in:
@@ -236,7 +236,7 @@ public final class LogUtils {
|
|||||||
} else {
|
} else {
|
||||||
builder.append("\n ").append(String.format("%" + column + "s", " "));
|
builder.append("\n ").append(String.format("%" + column + "s", " "));
|
||||||
}
|
}
|
||||||
builder.append(" [").append(app.getPackageName()).append(']');
|
builder.append(" ").append(app.getPackageName());
|
||||||
}
|
}
|
||||||
|
|
||||||
return builder.toString();
|
return builder.toString();
|
||||||
|
|||||||
Reference in New Issue
Block a user