MagiskHidePropsConf/uninstall.sh
Didgeridoohan 94fb404db9
v5.0.0-v64
2019-11-02 23:24:17 +01:00

20 lines
385 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%/*}
# Load functions
. $MODPATH/util_functions.sh
rm -rf "$MHPCPATH"
for ITEM in $CACHEFILES; do
rm -f $CACHELOC/$ITEM
done