IOS 11 Xcode 9: Archive Errors Undefined Symbols for arm64 Architecture:

I am trying to create an archive for an XCODE 9 application using the NFC kernel and getting errors (see images) that I cannot find by trying many settings. We use the new NFC Core platform in the application, and everything works great when working on devices, etc. - just do not create an archive so we can add to TestFight ...

Created Archiving Errors

enter image description here

Trying to download archive and apple do not allow beta code

Here is a screenshot from me that changed the archive scheme for debugging, but without any other results, unfortunately.

Scheme> Archive changed to debug

+5
source share
2 answers

Well, in my opinion, there can be no release versions of this symbol, this is an option, and if it worked during testing, you could compile the archived version with the Debug settings:

Click on the settings of the target scheme:

enter image description here

Click the right diagram:

enter image description here

Select Archive, and then change the assembly configuration for debugging:

enter image description here

Then you can back up for archiving again ... A side effect may be that the executable will be larger ... Let me know if this works :-)

0
source

I just wanted to update this post, since from the moment of upgrading to XCODE 9 Beta 3 all these problems are gone. Now I can archive with bit code and successfully boot into ITUNES connect to publish externally as TestFlight without any code changes.

Thanks for all the help to move it, but I couldn’t get to TestFlight, because I scattered all kinds of problems and everything was fixed with the last build cup - thanks Apple!

0
source

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


All Articles