diff --git a/bash/adb-reset-permissions.bash b/bash/adb-reset-permissions.bash new file mode 100755 index 0000000..d1e6ab3 --- /dev/null +++ b/bash/adb-reset-permissions.bash @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +set -x +# As the GUI method did nothing for me, this will hopefully reset all +# permissions of apps on an Android device. +adb "$@" shell pm reset-permissions +adb "$@" reboot +set +x