How to deal with the problem that the IPA file cannot be displayed in the background architecture version after Xcode uploads it?

How to deal with the problem that the IPA file cannot be displayed in the background architecture version after Xcode uploads it?

AU upload ipa shows the following red box to indicate successful upload, but sometimes the build version does not appear in the background of the App Store, please check the detailed description below!

1. First, log in to the background of iTunes Connect and check the ipa build status

https://appstoreconnect.apple.com/

Click to enter APP, click Activity, all build version options (as shown in the figure below), there are two situations!

1. The ipa package meets the requirements, and it shows that it is being processed. This is a successful upload, just wait for processing (according to the size of the package, it may take a few minutes to one or two minutes to process)

2. The ipa does not meet the requirements, and the version being processed does not appear, or the version being processed disappears when the page is refreshed

If this happens, it means that there is a problem with the ipa package you uploaded, and Apple will send the specific reason to the email (the developer account is the email address,)

Log in to the mailbox to check the feedback email ( the feedback email may also be in the trash box ), correct the error and repackage and upload.

2. Example and description of error feedback email

Error feedback email example (as shown below)! If you don't understand English, copy it to Baidu Translate.

The error in the figure below means that the package is packaged with the development certificate ipa, and it needs to be packaged with the release certificate to be put on the shelves.

Of course, there are various other reasons, please copy and translate the feedback email for details!

Another very common mistake (feedback below) is the problem of the APP icon, which cannot use a transparent background. Generally, the icon is made with rounded corners, and the rounded corners are transparent, so it doesn’t work.

Apple’s icons will automatically have rounded corners, so there is no need to change them to rounded corners, just upload a square icon!

ITMS-90717: Invalid App Store Icon - The App Store Icon in the asset catalog in 'AppCanPlugin.app' can't be transparent nor contain an alpha channel.Best regards,The App Store Team

ITMS-90717: Invalid App Store Icon - The App Store icon in the "AppCanPlugin.app" asset catalog cannot be transparent nor contain an alpha channel. Best Regards, App Store Team

Developers may encounter the following issues after uploading an iOS application file (IPA):

  1. Upload rejected: Although Xcode shows that the upload was successful, the application was actually rejected. The solution is to try to upload a new build version, the new version must be higher than the previously uploaded version.

  2. Build not showing: No build is showing in iTunes Connect, although the app uploaded successfully. At this point, you can check the registered email address of the developer account, and you may receive a prompt email about an upload error. Check the cause of the error according to the email prompt and make corresponding corrections.

  3. Permissions issues: Since iOS 10, Apple has been stricter on the use of user permissions by apps. During the development process, you need to pay special attention to the permission settings.

  • Microphone permissions: Privacy - Microphone Usage Description Allow this App to use your microphone?
  • Camera permissions: Privacy - Camera Usage Description Allow this app to use your camera?
  • Album permissions: Privacy - Photo Library Usage Description Allow this App to access your media library?
  • Contacts permission: Privacy - Contacts Usage Description Allow this app to access your contacts?
  • Bluetooth permissions: Privacy - Bluetooth Peripheral Usage Description Is this App allowed to use Bluetooth?
  • Speech-to-text permission: Privacy - Speech Recognition Usage Description Is this app allowed to use speech recognition?
  • Calendar permissions: Privacy - Calendars Usage Description Is this app allowed to use the calendar?
  • Location permission: Privacy - Location When In Use Usage Description We need to obtain relevant data around you through your geographic location information
  • Location permission: Privacy - Location Always Usage Description We need to obtain relevant data around you through your geographic location information

When setting these permissions, it must be set according to the specified format to ensure that the format is correct. Note: These permission settings are key-value pairs, both key and value must be set, otherwise the application will still be rejected.

4. JDK version issue: When building an application, developers should check whether the JDK version is JDK 1.8. If not, it may cause application upload failure. At this point, you need to upgrade the JDK version to 1.8 and rebuild the application.

Guess you like

Origin blog.csdn.net/weixin_72686492/article/details/130016799