Visual Studio Taco - Remotebuild will no longer be used for a remote device

Until recently (around September 15, 2016) I was able to build and deploy the cordova project on a remote device (iPhone 6) using VS2015 with the latest version of TACO and remote build.

Now I launch ios 10 and update iTunes and xcode.

Now, when I run remotebuild, the device asks me for "Trust Computer". I press a button and then nothing happens. Remotebuild believes that the deployment was successful, but did not install anything on the device, so the "run" step completed with an error. See Below 404.

GET / cordova / build / 1216 / deploy 200 692.617 ms - 760

GET / cordova / build / 1216 / run 404 762.857 ms - 35

GET / cordova / build / 1216 / debug 500 10014.728 ms - 88

If I open the xcode project and run it, it will be successfully installed on the device and be able to run it.

+5
source share
1 answer

I finally decided it. I found a fix here:

https://github.com/Microsoft/remotebuild/issues/5

The solution was to upgrade brew, libimobiledevice, ideviceinstaller and ios-webkit-debug-proxy. I typed the following commands into the terminal:

brew update brew upgrade libimobiledevice --HEAD brew upgrade ideviceinstaller ios-webkit-debug-proxy 
+4
source

All Articles