We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e74acf commit fcc96ecCopy full SHA for fcc96ec
1 file changed
app/src/main/res/raw/module_uninstall.sh
@@ -4,3 +4,9 @@
4
pm list packages -3 | cut -d':' -f2 | grep "^IconifyComponent" | while read -r pkg; do
5
pm uninstall "$pkg"
6
done
7
+
8
+# Resolve internal storage path dynamically
9
+INTERNAL_STORAGE=$(readlink -f /sdcard 2>/dev/null) || INTERNAL_STORAGE="/storage/emulated/0"
10
11
+# Delete Iconify folder from Downloads directory
12
+rm -rf "${INTERNAL_STORAGE}/Download/Iconify"
0 commit comments