mirror of
https://github.com/Magisk-Modules-Repo/MagiskHidePropsConf.git
synced 2024-11-16 14:09:48 +00:00
21 lines
402 B
Bash
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
|