MagiskHidePropsConf/uninstall.sh
Didgeridoohan 23df5a0688
v5.1.1-v72
2020-01-10 19:45:27 +01:00

21 lines
409 B
Bash

#!/system/bin/sh
# MagiskHide Props Config
# Copyright (c) 2018-2020 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/common/util_functions.sh
rm -rf "$MHPCPATH"
for ITEM in $CACHEFILES; do
rm -f $CACHELOC/$ITEM
done