-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Idea of ManyullynSword. From KernelSU using WebUI the parasitic manager can be opened when opening the web page. In the future the web page could become an alternative manager, without parasitic and without installation.
- Loading branch information
Showing
4 changed files
with
74 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"/> | ||
<title>LSPosed_mod</title> | ||
<script src="index.js"></script> | ||
</head> | ||
<body></body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { exec } from 'kernelsu'; | ||
import { toast } from 'kernelsu'; | ||
|
||
async function open_manager() { | ||
toast('LSPosed_mod Manager starting...'); | ||
const { errno, stdout, stderr } = await exec('am start -c org.lsposed.manager.LAUNCH_MANAGER com.android.shell/.BugreportWarningActivity', { cwd: '/system' }); | ||
} | ||
|
||
open_manager(); |