Deploy to device: installation failed: AMDeviceInstallApplication returned: 0xe8000050

I have an application that I create using MonoTouch on my PC. I get this error when using deployment on device

/Developer/MonoTouch/usr/bin/mtouch -installdev "/SVN/myapp/bin/iPhone/Release/my.app" Please ensure your device is connected... Connected to: myiPad This application has been signed with a provisioning profile which does not include any device Connected to: myiPad Installing application Installation failed: AMDeviceInstallApplication returned: 0xe8000050 The application was terminated by a signal: SIGHUP 

I tried iPhone 4 and iPad 2.

I can drag and drop my.app into the iTunes or iPhone setup utility and install it error free on any device. Then it works as expected.

+4
source share
4 answers

Error:

 This application has been signed with a provisioning profile which does not include any device 

Rebuild the provisioning profile to turn on your device. You can do this by connecting your device to and from Xcode by selecting "Use this for development" in the organizer.

+9
source

In addition, you may receive the same error, but with a different error code, if the application is already installed, signed with a different certificate. For example, if it is installed with a test distribution certificate or other root certificate.

I have personal and working keys for signing, and this bites me from time to time.

+1
source

The problem was that my path was / Src / C # / App .... Deployment fails if you have # char in your local path ...

-C

+1
source

You need to register your COM application identifier under the Apple Developer Portal, and then create a provisioning profile for your device. Only then can you start your device. Also, make sure your application ID is corrupted with the one you set in the config.xml file.

0
source

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


All Articles