Skip to content

Instantly share code, notes, and snippets.

@Mustaavalkosta
Created April 16, 2014 11:37
Show Gist options
  • Save Mustaavalkosta/10858103 to your computer and use it in GitHub Desktop.
Save Mustaavalkosta/10858103 to your computer and use it in GitHub Desktop.
backuptool APK cleaner example
#!/sbin/sh
#
# /system/addon.d/90-example.sh
#
. /tmp/backuptool.functions
case "$1" in
backup)
# Stub
;;
restore)
# Stub
;;
pre-backup)
# Stub
;;
post-backup)
# Stub
;;
pre-restore)
# Stub
;;
post-restore)
rm -f /system/app/Example.apk
;;
esac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment