Skip to content

Instantly share code, notes, and snippets.

@hieu-van
Created November 19, 2019 10:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hieu-van/dd304ba17669904f730dc5b727e3d064 to your computer and use it in GitHub Desktop.
Save hieu-van/dd304ba17669904f730dc5b727e3d064 to your computer and use it in GitHub Desktop.
Clear data of disabled apps in Android
#!/bin/sh
for i in $(adb shell pm list packages -d | cut -d ':' -f 2); do
adb shell pm clear $i
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment