Add DroidGuard process killing script

This commit is contained in:
Chris Renshaw
2024-05-06 09:59:41 -03:00
committed by GitHub
parent afddeaf340
commit 4d116c6a42

12
module/killgms.sh Normal file
View File

@@ -0,0 +1,12 @@
#!/system/bin/sh
# killgms.sh by osm0sis @ xda-developers
#
# Kill the Google Play services DroidGuard process
# (com.google.android.gms.unstable)
if [ "$USER" != "root" -o "$(whoami 2>/dev/null)" != "root" ]; then
echo "killgms: need root permissions";
exit 1;
fi;
killall -v com.google.android.gms.unstable;