Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error during submission

I just rewrote my whole project to Swift 2.0 because xcode 7 doesnt support 1.2. Everything is fine except submission. Xcode shows me following error and I have no idea what to do:

The archive did not contain <DVTFilePath:0x7f9a1672aac0:'/Users/Adam/Library/
Developer/Xcode/Archives/2015-10-03/final_project 03.10.15 19.28.xcarchive/
BCSymbolMaps/989F2A46-2149-3CE5-AFD1-1614968AE31C.bcsymbolmap'> as expected.

I also get this one:

enter image description here

Thank you

like image 353
Lachtan Avatar asked Oct 03 '15 17:10

Lachtan


People also ask

What is a submission error?

When an application is submitted, the offering agency performs certain validations against the application. If errors exist, the application is put into a status of Submission Errors. ASSIST users with the proper authority can view these errors and make corrections before re-submitting the application to the Agency.

What is difference between warning and error?

WARNING: Something has not worked as it should. This may be of greater or lesser importance depending on the circumstances. e.g. An input file was not found, or was of the wrong format. ERROR: Something ``serious'' has gone wrong.


1 Answers

It's likely you built your app with Enable Bitcode set to NO in build settings.

Then, in the app submission window, you had "include bitcode" checked, which is now at the bottom of the window. Uncheck that and it should submit. Enable bitcode in your build settings if you want to then submit with bitcode.

like image 170
Arthur Liu Avatar answered Sep 17 '22 08:09

Arthur Liu