0

I'm trying to run one of the GPUImage sample projects (FilterShowcase) and I keep getting the following error:

Code Sign error: A valid provisioning profile matching the application's Identifier 'com.sunsetlakesoftware.FilterShowcase' could not be found

Usually I'm able to run projects I download from GitHub no problem, so I'm not sure why this is happening. Do I need to request the provisioning profile from the author? Any help would be appreciated thanks.

  • Please see this http://stackoverflow.com/questions/1269646/code-sign-error-when-building-iphone-application. I think it should help you. – AnkitJain Jul 29 '13 at 19:10

3 Answers3

1

The problem is that the sample project has com.sunsetlakesoftware.FilterShowcase mentioned as it's Bundle Identifier, And there will be no Provisioning Profile in your system matching this bundle ID. So make sure you set the right Bundle identifier in the TARGETS / plist.

Do I need to request the provisioning profile from the author?

No, you don't need to request the provisioning profile from the author. You can use any provisioning file to run the app on the Device unless it's Bundle ID matches the Bundle ID specified in the TARGETS / plist of your app.

Jamal Zafar
  • 2,179
  • 2
  • 27
  • 32
  • Thanks...what would be the right bundle identifier to set it to? – StupidQuestionIKnow Jul 29 '13 at 20:25
  • 1
    @StupidQuestionIKnow: If you have any provisioning profile on your system (and if your device is Added in that provisioning profile), just copy it's Bundle identifier and replace the "com.sunsetlakesoftware" in the Project TARGETS / plist with that bundle ID. – Jamal Zafar Jul 30 '13 at 06:52
0

The problem was, somewhere along the line I deleted my team provisioning profile! Didn't realize it, but I was also unable to run any other sample projects that weren't created by me.

-1

This problem is most likely caused by Xcode.

Maybe this or this might help

Community
  • 1
  • 1
chrisblomm
  • 314
  • 1
  • 7