aubio / aubio

a library for audio and music analysis
https://aubio.org
GNU General Public License v3.0
3.31k stars 382 forks source link

problem submitting app to TestFlight #181

Closed simonbytez closed 6 years ago

simonbytez commented 6 years ago

I ran into an issue when submitting my app to TestFlight. I submitted the app from within Xcode 9, and when I did, I got an error saying:

"Invalid Bundle Structure. The binary file Frameworks/aubio.framework/aubio is not permitted. Your app can't contain standalone executables or libraries, other than a valid CFBundleExecutable of supported bundles.

I'm using the Aubio 0.4.4 framework.

theronic commented 6 years ago

It sounds like you've added Aubio as an executable in the "Copy Bundle Resources" build phase, when it should be a static library via the "Link Binary with Libraries" build phase.

Maybe try this solution?

simonbytez commented 6 years ago

Ok, great. It looks like that fixed it, thank you!