IOS - Error: This action could not be performed. Try again (-22421)

I am trying to download an iOS application in the App Store using Xcode -> Organizer , but I am having a problem. This action cannot be completed. Try again (-22421) as shown in the image below. I tried to reload the application many times, but the same error occurred

Here is the binding to the problem I get:

enter image description here

What to do next? How to download the application in the store?

Tried to use Application Loader application and now got another error

Error ITMS-90168: "The binary you uploaded is not valid.

+5
source share
2 answers

Use the Application Loader to download the application, since the Xcode organizer cannot download the file (rejects the IPA) sometimes, without a genuine reason and a frequent problem with the Xcode Organizer, that the apple cannot permanently resolve.

There are several other reasons for this error, for example

  • Apple Application Download Server is not working properly (not in connection or lost connection during file download). Just wait and try again later (maybe after a day).
  • Fluctuation in your network connection when downloading a file.
  • You may not have added privacy to your info.plist file.

Cocoa Keys : Here is a list of keys that you should consider in order to add info.plist to your file, if you have used this service in your application.

Solution for error code: 90186

  • An outdated application loader may cause this error. Use the latest Xcode tool and use the application loader from the Xcode Tool.
  • Invalid / invalid provisioning profile associated with your assembly. Be sure to use the correct provisioning profile (Providing a profile with Distribution / Production mode. Creating a development mode creation profile does not allow loading the application into the repository.)

You can find the latest tool to download applications from the latest Xcode tool: Xcode (menu) ► Open the developer tool ► Application Loader

enter image description here

+1
source

This works great with the application loader. You will need to create an ur ipa from the Xcode organizer and use the application loader.

I ran into this problem last week. finally loaded using the application loader.

+1
source

All Articles