Check application for iOS store archive error

I am trying to archive my application for upload to the application store, and I cannot understand its life. I already sent a ticket to Apple Technical Support, but I decided that I would try to see here if anyone had seen it before. Could not find anything on the Internet. I tried to manually select the correct training profile as described here .

Screenshots with an error:

enter image description here

enter image description here

When I look at the indicated tracks in the terminal, there is no .bcsym, while the other one does not have / packages:

First way image

Second way image

Any ideas? The only strange thing I can think of is that it is a Swift rewrite of the Obj-C application, so it is completely split into xcodeproj. I also had to rename the project at one point to match the outdated name.

+5
source share
3 answers

It seems this problem only occurs when building with Xcode 7. I would recommend you go through the eskerber answer in the following link:

https://forums.developer.apple.com/thread/14729

Just for reference, I am posting the answer from the link here:

You probably created your application with Enable Bitcode set to NO in the Settings assembly.

Then, in the applicationโ€™s presentation window, you turned on bitcode ", which is now at the bottom of the window. Uncheck what it should present. Turn on the bitcode in the build settings if you want to send it using bit code.

In addition, you can clear the "Enable application symbols" checkbox from the send window.

Hope this helps.

+5
source

The likely problem is that you create your project with different settings for the bit code and load using different ones. First check your project settings if you set the bitcode to yes or no.

enter image description here

And when downloading, make sure that you check the (include bitcode) box only if your bitcode settings have Yes, otherwise uncheck it.

enter image description here

+1
source

Due to this problem, you may notice that the binary application is very large if you download using bit code, even in Testflight. Apple cuts this when distributed in the app store.

0
source

Source: https://habr.com/ru/post/1232380/


All Articles