mirror of
https://github.com/UrbanApps/Armchair.git
synced 2026-01-14 14:23:25 +01:00
Missing load commands #17
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @hdaniel on GitHub (Oct 11, 2015).
I am getting this error from iTunes Connect after uploading to App Store and I haven't been able to figure out how to resolve it:
"Missing load commands - The executable at '/Payload/Affection Connection.app/Armchair.bundle/Armchair' does not have the necessary load commands. Try rebuilding the app with the latest Xcode version. If you are using third party development tools, contact the provider."
Any ideas on how to proceed are appreciated!
@coneybeare commented on GitHub (Oct 14, 2015):
That's a strange one. Googling that message yields very few results. Are you using the real version of Xcode?
@hdaniel commented on GitHub (Oct 15, 2015):
Yes, I am using the latest version of Xcode. I followed the installation instructions in the readme and video to install Armchair, and then removed the info.list file from the archive as described in the wiki to resolve the code signing error. This is my first iOS app, so my experience tracking this sort of thing down is limited.
Since I couldn't find anything online similar to my issue I wondered if the problem had something to do with removing the info.plist file, so I went down the path of trying to resolve the code signing entitlement error some other way, but I hit a dead end there.
I wound up getting around the error by manually adding Armchair as a framework directly to my app instead of as a git submodule. This isn't ideal, of course, but I did spend many hours banging on it with no luck.
@pavm035 commented on GitHub (Nov 22, 2015):
Hi,
I'm facing same issue on Xcode7, you got any solution ?
Thanks
@ZanderDev commented on GitHub (Nov 22, 2015):
Hi,I'm facing same issue on Xcode7, you got any solution ?
@ZanderDev commented on GitHub (Nov 22, 2015):
@pavm035 ,Did you get any solution about this problem?
@pavm035 commented on GitHub (Nov 23, 2015):
@ZanderDev Yes i solved this issue by removing versioning from bundle target, where xcode adds agv(apple generic versioning) option which generates *ver.c files during compilation which in turn generates executable file for bundle, and this is the cause of the issue. Hope it helps
Thanks
@ZanderDev commented on GitHub (Nov 24, 2015):
@pavm035 “Yes i solved this issue by removing versioning from bundle target” , what is the meaning of "removing versioning "?
@pavm035 commented on GitHub (Nov 24, 2015):
@ZanderDev Look at build setting for your bundle target and search for "versioning" set it to None, by default it set to agv
@ZanderDev commented on GitHub (Nov 24, 2015):
@pavm035 Thanks.