Quote:
Originally Posted by gfxblit
1) when I click on my 'keys' in the keychain access I see a private key associated with each certificate. So I see a private key associated with my developer certificate and a private key associated with my distribution certificate. It seems weird that you have only one private key associated to your developer certificate. You may want to redo that certificate issuing part again.
2) In the Info.plist, check that your Bundle Identifier matches the App ID of your provisioning profile. For example, my Info.plist Bundle Identifier is 'com.zenvita.com.${PRODUCT_NAME:identifier'. My App ID is '6VKUTDF7TL.com.zenvita.com.*'
The * means match to any characters (although I heard you need to use UTF-8).
|
Ah-hah, I think that MIGHT be it. Looking at the Info.plist file contents I see:
Code:
<key>CFBundleIdentifier</key>
<string>com.yourcompany.TABS</string>
I didn't use the wildcard on the App ID of the provisioning profile, but I sure as heck didn't use "yourcompany" as part of the identifier string, LOL! I'll try correcting that to match the App ID info, and rebuilding when I get home. Hopefully that'll fix the problem.
Thanks