Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

'IPA processing failed' while distributing build in Xcode Beta

While trying to distribute IPA, Xcode throws an error:

“IPA processing failed”

Steps:

Product -> Archive. -> Distrubute -> Enterprise/Development -> “IPA processing failed”

enter image description here

Xcode: Version 11.0 beta 3 (11M362v)

OS: 10.15 Beta (19A501i)

NB: I was able to take build after upgrading to Xcode 11 once, but after an additional count check in the code, from that moment i was unable to success., even i can't re-export last successfully generated archive.


Update: I think this is caused because of Some frameworks I have included in my project, at that time 3rd party framework didn't released for the new compiler. And now they released with supporting swift 5.1 & Xcode 11 compiler. So the issue is not getting anymore for me.

like image 437
Lal Krishna Avatar asked Jul 04 '19 06:07

Lal Krishna


2 Answers

For me the following Solution Worked. Uncheck the bitcode check while creating the iPA and click on next as soon as possible and dont allow xcode to call the api for validating the IPA

Uncheck this rebuit with bitocde on and click on next asap Rebuild from xcode - uncheck this option

like image 99
Boopathi Marappan Avatar answered Sep 23 '22 01:09

Boopathi Marappan


I just remove WEbRTC framework from Embedded frameworks, because I was manually added WEBRTC framework from Mac installed location. After removing, project works fine and app successfully build to Apple Store Connect. I might be wrong But I think Embedded frameworks is only for the frameworks that is installed by using Carthage.

enter image description here

like image 40
Ahtazaz Avatar answered Sep 26 '22 01:09

Ahtazaz