MagiskHidePropsConf/uninstall.sh
2021-09-04 13:11:35 +02:00

21 lines
409 B
Bash

#!/system/bin/sh
# MagiskHide Props Config
# Copyright (c) 2018-2021 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