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

Get itunes link for app before submitting

The manual way: Your should copy your “Apple ID” from iTunes connect and use this link: http://itunes.apple.com/us/app/APPNAME/idXXXXXXXXX Would open the US store (“APPNAME” is that app name and XXXXXXXXX is the “Apple ID”. You can use more general method (Recommended): http://itunes.apple.com/app/idXXXXXXXXX and replace “XXXXXXXXX” with your “Apple ID” (from iTunes connect – after creating the … Read more

How to solve “Application failed codesign verification” when uploading to iTunes Connect?

I found the solution to this problem after deeply looking at the log file. Although I created my own Distribution Profile and assigned to the CODE SIGNING IDENTITY the correct value for the developer certificate, it didn’t work giving me an error: “Application failed codesign verification”. The problem is at the following line: Authority=iPhone Developer: … Read more

iTunes connect will not let me add myself as a user

@sarnold Turning your comment into an answer because it worked for me. Two Separate Websites Apparently for historical and organizational reasons, Apple operates their developer and app store business in a bifurcated manner. developer.apple.com The web site for all the technical resources, including documentation, WWDC videos and such. itunesconnect.apple.com This completely separate web site handles … Read more