Skip to content

Instantly share code, notes, and snippets.

@karstenBriksoft
Created April 4, 2013 07:16
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save karstenBriksoft/5308470 to your computer and use it in GitHub Desktop.
Save karstenBriksoft/5308470 to your computer and use it in GitHub Desktop.
how to submit apps that contain the growl xpc to the app store without loosing entitlements for the xpc
replace _appName_ with the name of your app (i.e. Contacts.app)
- open Terminal window
find /var/folders -name _appName_ 2>/dev/null
- delete all folders that were found
- build & archive _appName_
- open archive in Finder, locate _appName_
- open gdb
attach -waitfor productbuild
- in Xcode distribute to app store
- wait until gdb halts
- open new terminal
find /var/folders -name _appName_ 2>/dev/null
- open folder that was found
- delete _appName_
- copy _appName_ from Archive to the folder were it was deleted
- back to gdb
c
- wait until _appName_ uploaded
- wait until the review status changed from "Upload Received" to "Waiting for Review"
- verfiy entitlements are correct by viewing the "binary details" in iTunes Connect
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment