skip to Main Content

I’m trying to deploy my app to my iPhone device in order to debug it (Automatic provision) but it says "No iOS signing identities match the specified provisioning profile". I am able to deploy apps from Xcode to the iPhone device.

3

Answers


  1. Please make sure that your bundle identifier in your app match your app id on the portal.

    The app id listed on the portal should match (either exactly or with a wildcard *). Then in your info.plist, it should match your CFBundleIdentifier. That’s what it uses to match provisioning profiles.

    For more detail, you can check: https://learn.microsoft.com/en-us/xamarin/ios/get-started/installation/device-provisioning/automatic-provisioning?tabs=windows .

    Login or Signup to reply.
  2. Some times VS cannot create certificate automatically. It can be solved by creating new Xcode project using your bundle ID and make sure it run from Xcode debug

    Login or Signup to reply.
  3. We have just faced this issue today, our Development Certificate has expired.

    Regenerate a new certificate and new provisioning profiles resolved the issue

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search