Visual Studio Cordova Deploys on a Remote iOS 10 Device

I have successfully configured remote deployment from Visual Studio on my Windows machine to iOS 9.x devices with Xcode 7.x on my mac, following this guide.

https://taco.visualstudio.com/en-us/docs/ios-guide/

With iOS 10, you need to upgrade to Xcode 8 and do some tweaking to get the developer id in the build configuration in order to get it to sign correctly. Thanks to this guide, I was able to get a successful compilation.

https://dpogue.ca/articles/cordova-xcode8.html

However, I still get this error that I cannot find a fix for the remote site.

Timed out connecting debugger to remote Apache Cordova app. See Output window for JavaScript console output.
Http 404: Error mounting developer disk image
Http 500: No devices found to debug. Please ensure that a device is connected and awake and retry.

I tried to change the remotebuild timeout settings and of course restart / reboot the device.

I can open .xcodeproj in Xcode and deploy it from Mac directly. Or grab the .ipa file and put it in iTunes to install.

Has anyone found a remote build solution to deploy on iOS 10 devices when receiving this error?

+4
source share
1 answer

This is fixed for me :)

Running from terminal: brew upgrade libimobiledevice --HEAD

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

+12
source

Source: https://habr.com/ru/post/1655382/


All Articles