9 lines
282 B
Bash
9 lines
282 B
Bash
#!/system/bin/sh
|
|
# CamSwapper VDM Privilege Module - Uninstall script
|
|
# Removes the privileged system app entry from package manager.
|
|
|
|
# Remove the system app entry from package manager
|
|
if command -v pm >/dev/null 2>&1; then
|
|
pm uninstall com.nothing.camera2magic 2>/dev/null
|
|
fi
|