Home > Net >  Deploy to iPhone Device doesn't work with Xamarin.iOS, "No iOS signing identities match&qu
Deploy to iPhone Device doesn't work with Xamarin.iOS, "No iOS signing identities match&qu

Time:12-20

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.

CodePudding user response:

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://docs.microsoft.com/en-us/xamarin/ios/get-started/installation/device-provisioning/automatic-provisioning?tabs=windows .

CodePudding user response:

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

  • Related