How can I reset or recreate the iOS Newsletter Signature ID

I’m trying to install a signed iOS Enterprise application, and I get an error while installing “Unable to download the application.” "APP" cannot be loaded at this time

The application seems to load correctly, I thought it might be a creation profile error or something like that. The only thing I came across was the reset button next to my iOS Distribution signature signature.

I came across Apple docs here, https://developer.apple.com/library/mac/documentation/IDEs/Conceptual/AppDistributionGuide/MaintainingCertificates/MaintainingCertificates.html#//apple_ref/doc/uid/TP40012582-CH31-SW16 “Reset certificates using Xcode” and tried “reset ', but it does nothing. When I click Finish and return to this screen, I see the same reset button.

Has anyone else come across this? I spent hours trying to figure it out to no avail.

Developer Account Signing Id

+8
ios xcode xamarin
source share
1 answer

Yes, this is similar to what happens with your installation. I would not trust what you use to reload your certificates. Try it manually.

A few things to check:

  • Make sure the certificate is installed on your computer.
  • Make sure that the device on which the application is installed is added to the list of devices.
  • Make sure your provisioning profile contains your device from the device list.
  • Finally, make sure that the provisioning profile has been installed on your computer.

Instead of resetting certificates using the graphical interface, just open a terminal and follow these steps:

  • Go to: $ ~ / Library / MobileDevice / Provisioning Profiles
  • Delete all certificates: $ rm -rf *
  • Reinstall certificates

I usually run into this problem. Sometimes certificates are not updated as soon as I reinstall them, so I just delete them all. Hope this helps.

+5
source share

All Articles