Xcode “The private key for is not installed on this mac – distributing”

Try following these steps: Revoke your existing iOS Distribution Certificate from the iOS developer website. Generate a new iOS Distribution Certificate by going to XCode Preferences->Accounts->View Details and then clicking the + underneath the list of signing identities. Go back to the developer website and make sure all your provisioning profiles are configured with the … Read more

How to fix “App Store Connect Operation ERROR ITMS-90771”

Add this in your info.plist and then resubmit your app <key>BGTaskSchedulerPermittedIdentifiers</key> <array> <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string> </array> or if you use more than one BGTask then use this code <key>BGTaskSchedulerPermittedIdentifiers</key> <array> <string>com.yourCompanyName.appName1</string> <string>com.yourCompanyName.appName2</string> </array>

No suitable application records were found

I’ve just been through the same problem and resolved it quite easily. Through iTunes Connect the app has to be in the state of ‘waiting for upload’. At first I thought ‘prepare for upload’ was sufficient but not so. Thus you need to go through the questions about have you changed encryption and how you … Read more

Transferring ownership of an iPhone app on the app store

Starting June 11, 2013 this has officially become possible. Here’s the official note: Dear developer, Apps can now be transferred from one developer to another within iTunes Connect, for example after an acquisition or when a distribution deal expires. Transferring the ownership of an app does not affect the app’s availability on the App Store. … 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

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