Error deploying iOS6 app using MonoTouch

I am trying to get iOS6 to work on my laptop.

I am running xcode 4.5 and the last MonoTouch. Whenever I try to connect to my phone, I get an error

Installing application Installation failed: Executable Twiddle Failed Error (error: 0xe8000046) error MT1006: Could not install the application '/Users/Me/Projects/MasterDetail/MasterDetail/bin/iPhone/Debug/MasterDetail.app' on the device: Executable Twiddle Failed Error (error: 0xe8000046). The application was terminated by a signal: SIGHUP 

There is no special code in the application. Its masterdetail template is provided.

What causes this problem?

+4
source share
2 answers

Try to remove the MasterDetail.app application from your device (with the device), and then reinstall it (from MonoDevelop).

Was the app deployed with iOS6 beta (pre / original)? I have seen this once or twice, and I think this is due to this (but I'm not quite sure and cannot repeat the problem anymore).

+4
source

The way Mono and Xcode work together is less than perfect. MonoDevelop will create copies of the project that are used by Xcode for the user interface, etc., And the debugger also uses the Xcode system.

I had this problem and fixed it by closing MonoDevelop and dragging the .obj and .bin directories to the trash and freeing the trash before performing a complete rebuild of the project.

It also seems to fix other errors, for example, when Xcode refuses to edit the XIB when MonoDevelop is called.

+1
source

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


All Articles