Uninstall android app from all connected devices via adb
Use this command to uninstall an app from all devices connectied to adb.
adb devices | tail -n +2 | awk '{print $1}' | xargs -i adb -s {} uninstall com.exampleWritten by Bartosz Filipowicz
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Android
Authors