skip to Main Content

I created an app using expo cli. I also created the build for the same using expo server and was trying to upload the app to the app store.
However, the previous version of the same app was written in Swift and I get this error.
As a result Apple is rejecting my app.
I have maintained the same bundle Id of the app.
enter image description here

Error :

Dear Developer,

We identified one or more issues with a recent submission for App Store review for your app, "My App Name". Please correct the following issues, then upload again.

ITMS-90433: Invalid Swift Support – The file libswiftAVFoundation.dylib doesn’t have the correct code signature. Make sure you’re using the correct signature, rebuild your app using the current public (GM) version of Xcode, and resubmit it. Don’t just modify the code signature of libswiftAVFoundation.dylib.

Best regards,

The App Store Team

2

Answers


  1. solved by changing ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES to YES in my project configuration.

    In XCode select your project -> Build Settings and look for "Always embed swift standard libraries". If NO is selected, switch to YES (for debug and release), and it’s done.

    It is recommended to clean your build in Xcode before building and submitting again, just to make sure you have no residues of your old build left!

    Solution 2:

    The other solution I came across is the version mix match. Make sure you are using correct version of expo. Otherwise just update it to the latest one.

    Login or Signup to reply.
  2. I don’t think that this solution works because when the application is built on Expo, using the command EAS, is the expo server who creates the IPA, and in one step copy the file libswiftCore.dylib (in my case) and is signing it using "codesign", then making changes in the local Xcode I don’t expect solve this problem. ¿Maybe making some change that allows the project tell expo which signature must use in the swift support file?

    thanks

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search