Visual Studio 调试器无法连接到 iOS 模拟器中的远程 Apache Cordova 应用程序
Visual Studio Debugger failing to connect to remote Apache Cordova app in iOS simulator
我一直在尝试在 Windows 8.1 虚拟机中使用 Visual Studio 2015 RC 调试 Apache Cordova 应用程序。该应用程序是 运行 在 iOS 模拟器中 MAC OS 主机使用 vs-mda-remote(我尝试过不同的 iPhone 版本),但调试总是超时。似乎没有正确的错误,只有以下错误:
Starting launch process C:\Program Files (x86)\nodejs\node.exe "C:\Users\User\AppData\Roaming\npm\node_modules\vs-tac\emulator.js" --platform ios --action launch --path
"C:\XXXXX\bld\ios\Debug\buildInfo.json" --serverUrl iMac-User.local:3000 --language pt-PT --cliVersion 5.1.1 --deployTarget "iPhone 5"
Timed out connecting debugger to remote Apache Cordova app. See Output window for JavaScript console output.
------ Cordova Tools 5.1.1 already installed.
emulated - Successfully sent to ios Simulator
Emulating app at /Users/user/remote-builds/builds/5689/cordovaApp for target iPhone 5
Asking to debug in remote iOS device for buildNumber 5689 in server iMac-User.local:3000...
Fail to debug remote iOS in order to compile C:\XXXXX\bld\ios\Debug\buildInfo.json to http://iMac-User.local:3000 :
iPhone 5
我已经尝试使用 vs-mda-remote --secure false 和我在网上找到的其他一些建议来清理 cordova 的缓存。但是,似乎没有任何效果。这不是项目本身,因为我的一个朋友能够调试它。他电脑的配置好像和我的一样
对可能出现的问题有什么想法吗?
谢谢
问题找到了,肯定是Homebrew安装有问题。所以我重新安装了它,并强制安装ios-webkit-debug-proxy。这解决了我的问题,我现在可以调试应用程序了。
我一直在尝试在 Windows 8.1 虚拟机中使用 Visual Studio 2015 RC 调试 Apache Cordova 应用程序。该应用程序是 运行 在 iOS 模拟器中 MAC OS 主机使用 vs-mda-remote(我尝试过不同的 iPhone 版本),但调试总是超时。似乎没有正确的错误,只有以下错误:
Starting launch process C:\Program Files (x86)\nodejs\node.exe "C:\Users\User\AppData\Roaming\npm\node_modules\vs-tac\emulator.js" --platform ios --action launch --path
"C:\XXXXX\bld\ios\Debug\buildInfo.json" --serverUrl iMac-User.local:3000 --language pt-PT --cliVersion 5.1.1 --deployTarget "iPhone 5"
Timed out connecting debugger to remote Apache Cordova app. See Output window for JavaScript console output.
------ Cordova Tools 5.1.1 already installed.
emulated - Successfully sent to ios Simulator
Emulating app at /Users/user/remote-builds/builds/5689/cordovaApp for target iPhone 5
Asking to debug in remote iOS device for buildNumber 5689 in server iMac-User.local:3000...
Fail to debug remote iOS in order to compile C:\XXXXX\bld\ios\Debug\buildInfo.json to http://iMac-User.local:3000 : iPhone 5
我已经尝试使用 vs-mda-remote --secure false 和我在网上找到的其他一些建议来清理 cordova 的缓存。但是,似乎没有任何效果。这不是项目本身,因为我的一个朋友能够调试它。他电脑的配置好像和我的一样
对可能出现的问题有什么想法吗? 谢谢
问题找到了,肯定是Homebrew安装有问题。所以我重新安装了它,并强制安装ios-webkit-debug-proxy。这解决了我的问题,我现在可以调试应用程序了。