Tuesday, July 12, 2011

Resolving code signing issues

/Developer/Applications/Utilities/Application Loader does not work.

You need to sign and deploy your app from within XCode 4.

  1. Under Project/Code Signing options set Code Signing Identity to your "3rd Party Mac Developer Application:.." certificate.
  2. If you link to static libraries they will be installed into the archive by default and they will cause code verification to fail since they don't have code signing option. To prevent this error open the xcodeproj file of static library and set Build Settings/Deployment/Skip Install to Yes.
  3. Select Product/Archive then Validate and Submit.

iTerm2 - How to auto-close sessions and auto-exit when last one closed

 Problem There are two problems when you close sessions and windows in ITerm2. When you gracefully exit from ITerm2 sessions with a recommen...