Reputation: 491
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.
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.
App just sits there, greyed out. clicking on it does nothing.
"Waiting..." Only shows up after rebooting...
Clicking on it displays the pop-up. (Only after rebooting..)
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!?
Upvotes: 1
Views: 590
Reputation: 76
To narrow the issue, I always try to install the release of the ipa through XCode.
You can quickly determine if the issue occurs inside the ipa.
Upvotes: 2
Reputation: 4652
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).
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