MagiskHidePropsConf/uninstall.sh
Didgeridoohan 37d57ad3bb
v5.1.0-v66
2019-11-22 20:19:18 +01:00

21 lines
402 B
Bash

#!/system/bin/sh
# MagiskHide Props Config
# Copyright (c) 2018-2019 Didgeridoohan @ XDA Developers
# Licence: MIT
# Uninstalls the module settings file and directory in Magisk's secure directory
# together with a few module files in /cache.
MODPATH=${0%/*}
BOOTSTAGE="post"
# Load functions
. $MODPATH/util_functions.sh
rm -rf "$MHPCPATH"
for ITEM in $CACHEFILES; do
rm -f $CACHELOC/$ITEM
done