Reputation: 1
We have a company account .
We have created the developer and distribution provisioning
files, and drag them into Xcode.
When we try to code sign
for distribution, we choose the release
to be :
iPhone distribution:companyName
We always get this error when trying to put the app on real iPhone ( this iPhone is registered in the dev center and included in the dev provisioning file! ):
None of the valid provisioning profiles include the devices:myDevice
But they Are include this device.
Upvotes: 0
Views: 2555
Reputation: 11
You can use a provisioning profile created for Ad Hoc Deployment to solve this issue:
Create an Archive: Xcode->Product->Archive
After the Archive is created: Export (pane on the right) -> Save for Ad Hoc Deployment -> Follow through the process; whether you save the .ipa file in the end is irrelevant
I had the exact same problem and the above worked. Xcode version 6.4.
Upvotes: 1