1

I have an iPhone application that I am trying to build and run on debug mode. I am getting a popup box saying:

"A valid provisioning profile for this executable was not found."

What could be the problem? I have a provisioning profile that is set up with a specific App ID and in my codesigning I have selected this profile. Any ideas?

CodeGuy
  • 28,427
  • 76
  • 200
  • 317

1 Answers1

0

Try the following:

  1. Double click the provisioning profile on your mac so that it gets installed in your machine.

  2. In XCode, (I assume you are using XCode), double click on the target under "Targets" group and check whether the code signing is set up properly in the box that opens up there.

Hope this helps.

Anindya Sengupta
  • 2,539
  • 2
  • 21
  • 27
  • that did help. okay so now I am running in debug mode and my console spits this message after it starts running: Unable to read symbols for /Developer/Platforms/iPhoneOS.platform/DeviceSupport/4.2.1 (8C148)/Symbols/Developer/usr/lib/libXcodeDebuggerSupport.dylib (file not found) – CodeGuy Dec 10 '10 at 05:40
  • Here is a similar question http://stackoverflow.com/questions/4284277/libxcodedebuggersupport-dylib-is-missing-in-ios-4-2-1-development-sdk – Anindya Sengupta Dec 10 '10 at 05:45
  • I couldn't find a cohesive answer from that link. – CodeGuy Dec 10 '10 at 05:46