A bug in the XCode 15.3 build system causes a dummy framework folder to be included in the app bundle when it depends on a statically linked framework (like this one). This causes app validation to fail both in the simulator and when pushing an app build to the App Store Connect.
We work around the bug by adding a dummy Info.plist to the platform frameworks, with a MinimumOSVersion that is wildly high to ensure it can't actually be used.
A bug in the XCode 15.3 build system causes a dummy framework folder to be included in the app bundle when it depends on a statically linked framework (like this one). This causes app validation to fail both in the simulator and when pushing an app build to the App Store Connect.
We work around the bug by adding a dummy
Info.plist
to the platform frameworks, with aMinimumOSVersion
that is wildly high to ensure it can't actually be used.Part of Electric-Coin-Company/zashi-ios#1166.