6

I am trying to submit my app into the app store but I am getting an error message from Apple:

Dear developer,

We have discovered one or more issues with your recent delivery for "My App". To process your delivery, the following issues must be corrected:

Invalid Bundle - One or more dynamic libraries that are referenced by your app are not present in the dylib search path.

Once these issues have been corrected, you can then redeliver the corrected binary.

Regards,

The App Store team

I tried using this answer to find out what's wrong but I am still stuck. I exported the iPA file of the app and used the otool -L MyApp command to find the frameworks. Here are the results:

enter image description here enter image description here

These are my frameworks from the iPA file:

enter image description here

I downloaded all my frameworks using carthage and I added the frameworks to the embedded frameworks section:

enter image description here

However when I submit the app I get the same email back from Apple.

Thanks!

Community
  • 1
  • 1
Abdullah Shafique
  • 6,878
  • 8
  • 35
  • 70

3 Answers3

2

Not sure if this helps, but I encountered the same error once when updating an app. In that case, the problem was caused by a third party library that had to be updated to match the current set of architectures and SDK.

Totoro
  • 3,398
  • 1
  • 24
  • 39
2

My suggestion is open your archieve from organizer > see product folder > open project.app > see there should no any .exe file(any where within folders as well).

Ajjjjjjjj
  • 669
  • 4
  • 12
2

I finally got it accepted by switching "Always Embed Swift Standard Libraries" to yes:

enter image description here

Abdullah Shafique
  • 6,878
  • 8
  • 35
  • 70