You've already forked PlayIntegrityFork
mirror of
https://github.com/osm0sis/PlayIntegrityFork.git
synced 2025-09-06 06:37:06 +00:00
Squashed: Add spoofVendingSdk for forcing new PI legacy verdicts Squashed: Move vending SDK spoof to EntryPointVending, replace killgms.sh with killpi.sh
14 lines
387 B
Bash
14 lines
387 B
Bash
#!/system/bin/sh
|
|
# killpi.sh by osm0sis @ xda-developers
|
|
#
|
|
# Kill the Google Play services DroidGuard and Play Store processes
|
|
# (com.google.android.gms.unstable and com.android.vending)
|
|
|
|
if [ "$USER" != "root" -a "$(whoami 2>/dev/null)" != "root" ]; then
|
|
echo "killpi: need root permissions";
|
|
exit 1;
|
|
fi;
|
|
|
|
killall -v com.google.android.gms.unstable;
|
|
killall -v com.android.vending;
|