iOS Build Environment Help Center

ITMS-90171: Invalid Bundle Structure

append delete Alan Wills

The project builds successfully and seemingly uploads fine, but upon review by TestFlight I receive the following errors:

---

ITMS-90171: Invalid Bundle Structure - - The binary file 'DoubleDutch.app/DoubleDutch.dSYM/Contents/Resources/DWARF/DoubleDutch' is not permitted. Your app can’t contain standalone executables or libraries, other than a valid CFBundleExecutable of supported bundles. Refer to the Bundle Programming Guide at https://developer.apple.com/go/?id=bundle-structure for information on the iOS app bundle structure.

ITMS-90171: Invalid Bundle Structure - - The binary file 'DoubleDutch.app/Frameworks/UnityFramework.framework/UnityFramework.dSYM/Contents/Resources/DWARF/UnityFramework' is not permitted. Your app can’t contain standalone executables or libraries, other than a valid CFBundleExecutable of supported bundles. Refer to the Bundle Programming Guide at https://developer.apple.com/go/?id=bundle-structure for information on the iOS app bundle structure.

---

I'm struggling to fix this and was wondering if it could be related to a setting in the builder? I've tried setting the configuration to be both Release and Debug, building dSYM and not building dSYM, but can't seem to come up with a way around it. I've followed relevant steps in the troubleshooting (although since that flow seems to work, it was hard to know what, if anything, could cause this issue) as well as search for a relevant similar topic in the forum.

- Running on Windows 10
- Builder version 3.50.1
- iOS SDK version 15.5
- Does not rely on CocoaPods, any particular iOS device or requirements and does not use any third party SDKs

Thanks!

:: @Alan Wills added on 07 Aug ’22 · 14:29

(Double Dutch is the name of the app, that's not some weird 3rd party SDK)

Reply RSS

Replies

append delete #1. Pierre-Marie Baty

Hello

You uploaded a build containing debug information (.dSYM folder). This is used for live debugging and not for distribution. For TestFlight and App Store publishing you need to upload an .ipa file without such debug information (untick the relevant checkbox).

This hints me that I should probably change something so that the .dSYM folder is stripped out at code signing time when it's signed with a distribution certificate...

Let me know if you need more help.

append delete #2. Oneday

Hello,

I'm getting the same error, although it's regarding some Swift libraries.

https://pastebin.com/bRV58g3a

- Running on Windows 10
- Builder version 3.51.2
- iOS SDK version 15.5

I've been using the Builder for a while now, and it was working fine for the last couple of months. I've just updated the iOS SDK as well as the builder itself yesterday.

append delete #3. Pierre-Marie Baty

Hmm, that's a new one. A few questions :

- Does the app work OK when deployed on a device ?
- What minimal target iOS version did you set ?

It's possible that Apple changed some rules now that the Swift libraries are widely deployed with the iOS updates and the ABI is stable, and I should now use the system-supplied Swift libraries instead of bundling the ones from the SDK with the app.

Before investigating that, I'd like to know the answer to these 2 questions (especially the 2nd).

:: @Pierre-Marie Baty added on 21 Sep ’22 · 17:15

*edit* Okay, I see a discrepancy anyway between Apple's guidelines and what the toolset does. As per https://developer.apple.com/documentation/bundleresources/placing_content_in_a_bundle the Swift system libraries should be embedded in a subdirectory of the app called "Frameworks". The builder does that in a subdirectory called "Libraries". It was accepted but it looks like it no longer is. I can already fix that.

append delete #4. Oneday

I'm targeting 11.0 as minimum.

I need to renew my development certificate so I haven't been able to test this particular build on a device yet. I'll get on that and I'll report back whenever I've been able to test on my device.

append delete #5. Pierre-Marie Baty

Version 3.52 which I'm about to release should fix this issue. You can download it once it's packed up and uploaded (in a few hours).

append delete #6. Oneday

Thank you very much!

append delete #7. Pierre-Marie Baty

You're welcome. Let me know if that wasn't enough for Apple to accept your build.

append delete #8. Oneday

Hi again.

I was working on some features so I ended up waiting a bit before trying this again.

Since the folder that was incorrectly placed was the one with all the Swift files, I imagine that this new issue is related to what we discussed earlier?

Dear Developer,
We identified one or more issues with a recent delivery for your app, "XXXXXXXXX" 0.7030 (0.7030). Please correct the following issues, then upload again.
ITMS-90426: Invalid Swift Support - The SwiftSupport folder is missing. Rebuild your app using the current public (GM) version of Xcode and resubmit it.
Best regards,
The App Store Team

Is there something I'd need to fix on my end or is this another issue with the builder? The SDK I grabbed was from the latest Xcode version at the time, around September 20th.

append delete #9. Pierre-Marie Baty

I found the reason here :

https://stackoverflow.com/questions/41907323/what-is-the-file-size-overhead-of-the-bundled-swift-libraries-compared-to-an-obj/41907555#41907555

It looks like the new builds that are sent to Apple also need to bundle *two versions* of their Swift libraries, one into the Frameworks folder of the app and the other one into a SwiftSupport folder inside the .ipa.

I have to update my makeipa.exe utility to reflect this change. Thank you for your patience...

append delete #10. Oneday

Hi,

No problem, I understand how annoying Apple can be.

Thanks for your continuous work, this builder is a lifesaver.

append delete #11. Oneday

Hi again,

Any updates on this issue? Do you have a rough ETA for the fix? Do you know if there a way for me to move the files in the right place manually in the meantime?

append delete #12. Pierre-Marie Baty

My apologies. I've been very busy this week. I commit myself to give you something before monday.

What you can do in the meantime :

- re-sign your IPA file for distribution
- unzip your re-signed IPA with 7zip, preserve the directory structure.
- create a "SwiftSupport" directory just aside the "Payload" directory
- copy all the files that begin with "libswift" that are in the Payload/YourAppName.app/Frameworks directory inside the SwiftSupport directory (i.e. duplicate them there)
- re-zip your IPA (make sure to use the .zip format) and rename the resulting .zip file to .ipa
- last check: open it with 7-zip again to make sure the directory structure is preserved: at the root of your archive you should have two directories, i.e. "Payload" and "SwiftSupport". If that's okay you're good.
- upload the resulting .ipa file *WITHOUT resigning it*.

Let me know if this workaround does it.

append delete #13. Oneday

Hello,

I understand about the delay.

I've tried this method but ended up with this result:

Dear Developer,
We identified one or more issues with a recent delivery for your app, XXXXXXXXXX. Please correct the following issues, then upload again.
ITMS-90433: Invalid Swift Support - The file libswiftCore.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 libswiftCore.dylib.
Best regards,
The App Store Team

It's getting late so I won't toy with it more, I'll simply wait for your upcoming update at this point.
Thanks again!

append delete #14. Pierre-Marie Baty

OK. So my update wouldn't work because I was about to reuse the Swift libraries already re-signed as part of the IPA package. But as I understand they expect these libraries in the SwiftSupport directory to NOT be re-signed by your signing identity.

Alright, let's verify theory #2:

- re-sign your IPA file for distribution
- unzip your re-signed IPA with 7zip, preserve the directory structure.
- create a "SwiftSupport" directory just aside the "Payload" directory
- enumerate all the files that begin with "libswift" that are in the
- copy all the files that begin with "libswift" that are in the Payload/YourAppName.app/Frameworks directory; for each of them, *copy them from C:\Users\YourWindowsAccountName\iOS Project Builder for Unity\SDK\swift-5.0\iphoneos* to the SwiftSupport directory (i.e. duplicate them there)
- re-zip your IPA (make sure to use the .zip format) and rename the resulting .zip file to .ipa
- last check: open it with 7-zip again to make sure the directory structure is preserved: at the root of your archive you should have two directories, i.e. "Payload" and "SwiftSupport". If that's okay you're good.
- upload the resulting .ipa file WITHOUT resigning it.

Notice the change in bold and tell me what Apple say; did I get it correctly this time ?

:: @Pierre-Marie Baty added on 10 Oct ’22 · 14:26

*edit* looks like the caret slipped away while I was typing. The step that changes should be read like this:

- enumerate all the files that begin with "libswift" that are in the Payload/YourAppName.app/Frameworks directory; for each of them, *copy them from C:\Users\YourWindowsAccountName\iOS Project Builder for Unity\SDK\swift-5.0\iphoneos* to the SwiftSupport directory (i.e. duplicate them there)

append delete #15. Pierre-Marie Baty

To make it 100% unambiguous the procedure is like this:

- re-sign your IPA file for distribution
- unzip your re-signed IPA with 7zip, preserve the directory structure.
- create a "SwiftSupport" directory just aside the "Payload" directory
- enumerate all the files that begin with "libswift" that are in the Payload/YourAppName.app/Frameworks directory; for each of them, *copy them from C:\Users\YourWindowsAccountName\iOS Project Builder for Unity\SDK\swift-5.0\iphoneos* to the SwiftSupport directory (i.e. duplicate them there)
- re-zip your IPA (make sure to use the .zip format) and rename the resulting .zip file to .ipa
- last check: open it with 7-zip again to make sure the directory structure is preserved: at the root of your archive you should have two directories, i.e. "Payload" and "SwiftSupport". If that's okay you're good.
- upload the resulting .ipa file WITHOUT resigning it.

Let me know what Apple says this time.

append delete #16. Oneday

Hello,

here is the new message:

ITMS-90428: Invalid Swift Support - The files libswiftFoundation.dylib, libswiftCoreGraphics.dylib, libswiftObjectiveC.dylib, libswiftCoreFoundation.dylib, libswiftCore.dylib, libswiftDispatch.dylib, libswiftDarwin.dylib don’t match /Payload/YourAppName.app/Frameworks/libswiftFoundation.dylib, /Payload/YourAppName.app/Frameworks/libswiftCoreGraphics.dylib, /Payload/YourAppName.app/Frameworks/libswiftObjectiveC.dylib, /Payload/YourAppName.app/Frameworks/libswiftCoreFoundation.dylib, /Payload/YourAppName.app/Frameworks/libswiftCore.dylib, /Payload/YourAppName.app/Frameworks/libswiftDispatch.dylib, /Payload/YourAppName.app/Frameworks/libswiftDarwin.dylib. Make sure the files are correct, rebuild your app, and resubmit it. Don’t apply post-processing to /Payload/YourAppName.app/Frameworks/libswiftFoundation.dylib, /Payload/YourAppName.app/Frameworks/libswiftCoreGraphics.dylib, /Payload/YourAppName.app/Frameworks/libswiftObjectiveC.dylib, /Payload/YourAppName.app/Frameworks/libswiftCoreFoundation.dylib, /Payload/YourAppName.app/Frameworks/libswiftCore.dylib, /Payload/YourAppName.app/Frameworks/libswiftDispatch.dylib, /Payload/YourAppName.app/Frameworks/libswiftDarwin.dylib.

append delete #17. Pierre-Marie Baty

That's instructive. We are making progress.

So, for Apple the code signatures are now correct, which means that the expected signatures were:
- The Swift libs in SwiftSupport should be signed with Apple's signature as they come from the iOS SDK
- The Swift libs in Payload/YourAppName.app/Frameworks should be signed with your signing identity

But now Apple tells us that they want the *binary contents* of those libraries to be identical. Which seems at first sight totally absurd since the Swift libraries from the SDK contain all the possible architectures (including the iOS Simulator) whereas those in the Payload folder of your IPA are thinned to just those your app explicitly supports, to save space.

Since we can't resign the Swift libraries from the SwiftSupport directory with Apple's signing identity (because we don't have it) they must stay untouched. Which means the libraries in Payload/YourAppName.app/Frameworks should *not* be thinned to keep just the supported architectures of your app. That seems to be what the following sentence indicates : _Don’t apply post-processing to /Payload/YourAppName.app/Frameworks/libswiftFoundation.dylib, /Payload/YourAppName.app/Frameworks/libswiftCoreGraphics.dylib, /Payload/YourAppName.app/Frameworks/libswiftObjectiveC.dylib, /Payload/YourAppName.app/Frameworks/libswiftCoreFoundation.dylib, /Payload/YourAppName.app/Frameworks/libswiftCore.dylib, /Payload/YourAppName.app/Frameworks/libswiftDispatch.dylib, /Payload/YourAppName.app/Frameworks/libswiftDarwin.dylib._

I'll need to modify the build script for that not to happen any longer. I'll publish a fix soon. Thanks for your patience.

:: @Pierre-Marie Baty added on 11 Oct ’22 · 23:44

*edit* The downside of this curious Apple requirement will be that the IPA files submitted to the App Store will be quite significantly bigger in size. It shouldn't affect the "final" app download size, as the post-processing which is no longer to be done by the build system will be done by the App Store themselves. But nonetheless, it looks like a waste of bandwidth to me somehow.

append delete #18. Pierre-Marie Baty

Just to update on this issue. I've been looking at the build script today and I realized that it does *no longer* embed the Swift libraries with the app. That was done a long time ago when Swift support was not ubiquitous among iOS devices, but now what the script merely does is instructing the app to look for the *system* Swift libraries in /usr/lib/swift. And it no longer embeds any Swift library at all.

So I'm not quite sure how these Swift libraries ended up in your Framework directory. Could you share your Xcode project with me so that I better understand what's happening ? Send it to pm @ this domain dot com. Confidentiality guaranteed.

append delete #19. Pierre-Marie Baty

@Oneday: I've sent you an e-mail with a link to a beta version that should fix your issue. Have you received it ?

:: @Pierre-Marie Baty added on 20 Oct ’22 · 08:42

*edit* Problem solved by e-mail. An update will fix the issue for everybody else.

Reply

(Leave this as-is, it’s a trap!)

There is no need to “register”, just enter the same name + password of your choice every time.

Pro tip: Use markup to add links, quotes and more.

Moderators: Pierre-Marie Baty