我正在尝试配置 weinre 以调试 Android 4.0、4.1、4.2 和 4.3 上的 phonegap 应用程序。
根据我在网上阅读的内容,我必须在我的本地 IP 上运行 weinre 服务器,所以我运行了以下内容(xxx.xx.xx.xx 将代表我的计算机 IP 地址):
weinre --boundHost xxx.xx.xx.xx --httpPort 8081
我收到了回信:
weinre: starting server at http://xxx.xx.xx.xx:8081
然后我去了以下网址:http://xxx.xx.xx.xx:8081/client/
这打开了带有以下内容的 weinre 页面:
然后我在我的 Android 设备上启用 USB 调试。
我在 index.html 的底部添加了这个脚本:
<script src="http://xxx.xx.xx.xx:8081/target/target-script-min.js#anonymous"></script>
我部署了应用程序,但出现此错误:
The connection to the server was unssuccessfull((file:///android_assest/www/index.html)
这只发生在我添加 weinre 脚本时。
我应该提一下,我正在尝试调试投掷的电缆,我认为这是这样做的方法。
此外,我也尝试过使用 localhost,但由于某种原因,当我在其中添加带有 localhost 的脚本并运行应用程序时,它不会刹车,但在客户端刷新后也没有创建与 weinre 客户端的连接。
有谁知道有什么问题?