Last Updated: September 29, 2021
·
1.672K
· bartekfi

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.example