9

我正在使用 maven android 插件来构建我的项目并将它们部署到设备上。

使用mvn clean install android:undeploy android:deploy我可以成功部署到我的 2.2 ZTE 刀片:

[INFO] Found 1 devices connected with the Android Debug Bridge
[INFO] android.device parameter not set, using all attached devices
[INFO] Successfully uninstalled com.jameselsey.apps from P729J_SBM_ZTE_ZTE-BLADE
[INFO] Found 1 devices connected with the Android Debug Bridge
[INFO] android.device parameter not set, using all attached devices
[INFO] Successfully installed D:\development\james-projects\MyApp\target\myapp-0.5-SNAPSHOT.apk to P729J_SBM_ZTE_ZTE-BLADE

但是,当我在 2.3.3 上插入三星 GT-I9000 时,这似乎不起作用,这就是我得到的:

[INFO] Found 1 devices connected with the Android Debug Bridge
[INFO] android.device parameter not set, using all attached devices
[INFO] Successfully uninstalled com.jameselsey.apps from 333297C93FD200EC_samsung_GT-I9000
[INFO] Found 1 devices connected with the Android Debug Bridge
[INFO] android.device parameter not set, using all attached devices
01:36:59 E/Device: Error during Sync: timeout.

什么会导致超时?

4

2 回答 2

1

我在 Eclipse 中遇到了这个问题,这是因为 ADB 连接超时。

默认值为 5000 毫秒,将其更改为 10000 后得到修复。

于 2013-09-04T06:50:21.983 回答
0

实际上,@Capitain 溢出提到的连接超时只是为了让插件首先打开一个针对设备的套接字。之后,安装过程有自己的超时(以分钟为单位),由环境变量控制(根据ddmlibADB_INSTALL_TIMEOUT默认为 4 分钟)

于 2015-02-14T01:43:34.813 回答