I\'ve created an ad hoc distribution build for my iPhone app using Xcode 4.1. The target successfully builds and produces an archive file that I can see in Organizer. I then
Check your code signing profiles again. Your developer profile should be set to the debug and for the release you must set your distribution profile. Make sure you select any iOS SDK under each category and set the respective profiles for them as well.
Had the same problem today.. The "Code Signing Resource Rules Path" was missing in the PROJECT - Build Settings
...
Opened the "Build Settings" tab of your project.
Searched "Code Signing Resource Rules Path", it was empty for me
and added
$(SDKROOT)/ResourceRules.plist
credits goes to Adams Blair who described this problem with SDK2.2
yeah, i think it's xcode6.1 problem (or bug?)
you can
1.add $(SDKROOT)/ResourceRules.plist
to "Code Signing Resource Rules Path"
or
2.use xcode-select back to 6.01 build
or
3.sign argument without
"sign=iPhone Distribution: Grant Abt"
to work
Encounter this issue when testing with Xcode 6.1 beta version. Back to Xcode 6.0.1 works.