Skip to content

Commit

Permalink
Add DroidGuard process killing script
Browse files Browse the repository at this point in the history
  • Loading branch information
osm0sis authored May 6, 2024
1 parent afddeaf commit 4d116c6
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions module/killgms.sh
Original file line number Diff line number Diff line change
@@ -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;

0 comments on commit 4d116c6

Please sign in to comment.