I have created a FramweworkA written in Swift, which uses a FrameworkB written in Objective-C.
These two frameworks are dynamic.
I have no error when I integrate my FrameworkA to my iOS application.
The problem is that Apple doesn't allow me to have a Framework inside a Framework when I upload my App on testFlight.
Validation Error: Invalid Bundle. The bundle at ... contains disallowed file 'Frameworks'
During my research, I saw that you can create an Umbrella Framework but that it is not recommended.
Is the Umbrella Framework still possible? What is the best solution according to you?
Knowing that this Framework will be available to customers and therefore I would like to have only one Framework.
Thanks