Created
April 4, 2013 07:16
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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