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.
Question posted in Xcode
Whether you're new to Xcode or an experienced developer, our archive has everything you need to know about this integrated development environment (IDE). From basic functionalities to advanced features, our archive covers a wide range of Xcode-related questions and answers. Browse our archive now and find solutions to your Xcode questions, and take your app development skills to the next level
Whether you're new to Xcode or an experienced developer, our archive has everything you need to know about this integrated development environment (IDE). From basic functionalities to advanced features, our archive covers a wide range of Xcode-related questions and answers. Browse our archive now and find solutions to your Xcode questions, and take your app development skills to the next level
3
Answers
Please make sure that your
bundle identifier
in your app match yourapp id
on the portal.The app id listed on the portal should match (either exactly or with a wildcard
*
). Then in yourinfo.plist
, it should match yourCFBundleIdentifier
. 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 .
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
We have just faced this issue today, our Development Certificate has expired.
Regenerate a new certificate and new provisioning profiles resolved the issue