This commit is contained in:
LoveSy 2021-06-18 23:11:46 +08:00
parent d2337bbd96
commit 2fb8750c75
1 changed files with 2 additions and 2 deletions

View File

@ -53,7 +53,7 @@ public class LSPatch {
@Parameter(names = {"-p", "--proxyname"}, description = "Special proxy app name with full dot path") @Parameter(names = {"-p", "--proxyname"}, description = "Special proxy app name with full dot path")
private String proxyName = "org.lsposed.lspatch.appstub.LSPApplicationStub"; private String proxyName = "org.lsposed.lspatch.appstub.LSPApplicationStub";
@Parameter(names = {"-d", "--debuggable"}, description = "Set 1 to make the app debuggable = true, set 0 to make the app debuggable = false") @Parameter(names = {"-d", "--debuggable"}, description = "Set true to make the app debuggable, otherwise set 0 (default) to make the app non-debuggable")
private boolean debuggableFlag = false; private boolean debuggableFlag = false;
@Parameter(names = {"-l", "--sigbypasslv"}, description = "Signature bypass level. 0 (disable), 1 (pm), 2 (pm+openat). default 0") @Parameter(names = {"-l", "--sigbypasslv"}, description = "Signature bypass level. 0 (disable), 1 (pm), 2 (pm+openat). default 0")
@ -267,4 +267,4 @@ public class LSPatch {
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd-HH-mm-ss"); SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd-HH-mm-ss");
return df.format(new Date()); return df.format(new Date());
} }
} }