In an iOS application that depends on ffmpeg, I'm faced with the issue that the App Store does not accept dylibs that are embedded directly in the app bundle. This technical note says
Dynamic libraries outside of a framework bundle, which typically have the file extension .dylib, are not supported on iOS, watchOS, or tvOS, except for the system Swift libraries provided by Xcode
But it's not obvious to me, does this mean that in the case of ffmpeg, I would need one framework per dylib, or am I allowed to package all ffmpeg dylibs into a single framework and use that in my app bundle?