mirror of
https://github.com/chiteroman/PlayIntegrityFix.git
synced 2025-02-22 14:18:48 +08:00
This also properly cleans it up at uninstall. Some LineageOS based roms use this pif implementation.
11 lines
328 B
Bash
11 lines
328 B
Bash
#!/bin/sh
|
|
|
|
# LeafOS "gmscompat: Dynamically spoof props for GMS"
|
|
# https://review.leafos.org/c/LeafOS-Project/android_frameworks_base/+/4416
|
|
# https://review.leafos.org/c/LeafOS-Project/android_frameworks_base/+/4417/5
|
|
if [ -f /data/system/gms_certified_props.json ]; then
|
|
resetprop -p --delete persist.sys.spoof.gms
|
|
fi
|
|
|
|
# EOF
|