AndroidStudio:始终在所有连接的设备上运行

时间:2015-05-15 07:05:55

标签: android android-studio adb

如何配置AndroidStudio,即使我经常插入新设备/删除旧设备,也无需进一步查询即可在所有连接的设备上运行应用程序?

请注意,这需要与this solution略有不同的方法,因为如果您使用其程序,则会再次显示设备选择对话框

  • 连接其他设备

  • 重启Android Studio

3 个答案:

答案 0 :(得分:2)

我发现一个bash脚本在很长一段时间内一直很适合我:

adb devices | while read line
do
    if [ ! "$line" = "" ] && [ `echo $line | awk '{print $2}'` = "device" ]
    then
        device=`echo $line | awk '{print $1}'`
        echo "$device $@ ..."
        adb -s $device $@
    fi
done

所有积分都是github用户' christopherperry '。有关更多信息,请查看此链接:

https://gist.github.com/christopherperry/3208109

希望这有帮助。

答案 1 :(得分:1)

答案与解决方案几乎相同。唯一要做的就是"检查"该复选框显示"始终使用相同的设备以便将来发布" As highlighted in the image

第一次点击“运行”之前,请务必选择所有设备。

答案 2 :(得分:0)

每次都可以轻松运行所有连接的设备。只需选择所有已连接的设备,而 Android Studio 显示选择部署目标&选择"将相同的选择用于将来的发布"。

N.B。请记住,所有设备都是按顺序运行的。

enter image description here