Fabio S.
Fabio S.

Reputation: 491

Distributing Xamarin iOS app from AppCenter/HockeyApp

I can build and debug the Xamarin iOS app on the iPad without issues. The problem is when installing from the AppCenter or HockeyApp.

I am using a distribution identity and a distribution provisioning profile for both debugging directly on the iPad and when uploading to the AppCenter and HockeyApp.

enter image description here

The only difference really is the Debug mode for local debugging and Ad-Hoc mode when uploading to the AppCenter/HockeyApp.

When downloading and installing from the AppCenter/HockeyApp the icon shows up and the following status is seeing: Loading, Installing and then nothing the icon is just there, greyed out, clicking on it does nothing... I rebooted the iPad and now the icon shows as "Waiting..." when I click on it the popup shows up saying that something went wrong with the installation.

enter image description here

enter image description here

App just sits there, greyed out. clicking on it does nothing. enter image description here

"Waiting..." Only shows up after rebooting...

enter image description here

Clicking on it displays the pop-up. (Only after rebooting..) enter image description here

Any ideas on how to get the app to install properly via AppCenter or HockeyApp?

Here are the logs when installing from the web... The only thing I see is Application is invalid but why!?

enter image description here

Upvotes: 1

Views: 590

Answers (2)

AlickPann
AlickPann

Reputation: 76

To narrow the issue, I always try to install the release of the ipa through XCode.

  1. Connect your iPhone with Mac.
  2. Open Xcode
  3. Select Windows --> Device and Simulators
  4. Select your device from the "Connected" list
  5. Drag your ipa into the "Installed Apps" list.

enter image description here

You can quickly determine if the issue occurs inside the ipa.

Upvotes: 2

valdetero
valdetero

Reputation: 4652

  1. It looks like your UDID isn't added to your Ad-Hoc provisioning profile. When creating/editing the profile, you need to make sure that the device you want to install it onto is selected in the list of devices. It is the 3rd screen (app id, certificate, devices).

  2. You could be trying to install an app that is already installed with a different profile. If you install the debug app with the development profile and then try to install it with an ad-hoc, it won't let you. The console log will complain about some kind of mismatch with the bundle. Try deleting the app before installing it.

If that doesn't fix it for you, you should look through the console logs when trying to install the app and see if it gives the error.

Upvotes: 0

Related Questions