From 4d116c6a4211308bf2c6dfb153cb6cae61fbc9d1 Mon Sep 17 00:00:00 2001 From: Chris Renshaw Date: Mon, 6 May 2024 09:59:41 -0300 Subject: [PATCH] Add DroidGuard process killing script --- module/killgms.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 module/killgms.sh diff --git a/module/killgms.sh b/module/killgms.sh new file mode 100644 index 0000000..97ea64b --- /dev/null +++ b/module/killgms.sh @@ -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;