Reputation: 89
I Have prblem in my app ios I need Publish this App to my Iphone Device and
I connect my Iphone to Mac and create Provisioning Profiles by Xcode and Provisioning showing in Account Xcode like this Image
but when go to my app in site xamarin I don't found Provisioning Profiles and result like this image
Upvotes: 5
Views: 5527
Reputation: 199
Try this:
For me the issue was the team identifier contained the only provisions, and the only selection in Xamarin studio were users. I just created a new project in Xcode that pointed to the team provision, then used that new bundle identifier (that was uploaded to the Apple dev site) in Xamarin studio.
Upvotes: 1
Reputation: 593
There are two things to check here:
Does your bundle ID in your app's Info.plist file match the app ID linked to the provisioning profile in your Apple developer account? Xamarin Studio will only show provisioning profiles that are relevant to your bundle ID.
Do you have the certificate that your provisioning profile is linked to installed on your Mac? If you do, is it up to date? For instance, if you recreated your certificate and provisioning profiles in your Apple developer account but didn't install the new certificate on your Mac, XCode will show your provisioning profiles as downloaded, but Xamarin Studio will not show them without the relevant certificate.
Upvotes: 4