Last active
April 2, 2022 10:53
-
-
Save DarkCat09/eb40c544a4a722bb3a62d23e8ad418cb to your computer and use it in GitHub Desktop.
Start an application in a floating window (SkyolineHelper)
This file contains hidden or 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
#!/system/bin/sh | |
PKG=ru.fourpda.client | |
ACT=MainActivity | |
am start \ | |
-a android.intent.action.MAIN \ | |
-c FLAG_TEMP_WINDOW \ | |
-c android.intent.category.LAUNCHER \ | |
-c FLAG_FLOATING_WINDOW -f 0x10000000 \ | |
"$PKG/.$ACT" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment