Codesign of Dropbox API fails in Xcode 4.6.3: “code object is not signed at all”

I think I may have figured this one out. I’ve been running Xcode 4.6.3 on OS X Mavericks, under the impression that any build-specific tools were bundled in the Xcode application. But, it seems codesign is in /usr/bin. Whether it’s put there by one of the Xcode installers or comes with a vanilla system install, … Read more

Which iOS app version/build number(s) MUST be incremented upon App Store release?

Apple Technical Note TN2420, Version Numbers and Build Numbers Summary: The pair (Version, Build number) must be unique. The sequence is valid: (1.0.1, 12) -> (1.0.1, 13) -> (1.0.2, 13) -> (1.0.2, 14) … Version (CFBundleShortVersionString) must be in ascending sequential order. Build number (CFBundleVersion) must be in ascending sequential order. Version Number and Build … Read more