Invalid swift error when apple tries to process app

0

Hello! I'm trying to publish an app in the Apple App Store. The build does normal and also does the normal archive, but after processing in the apple, it returns the following error: Invalid Swift Support - The expected dylibs are missing from the app's Framework location, such as /Payload/MyPharma.app/Frameworks. Note: I'm using pods in the app. I've tried numerous alternatives that did not work out. What should I do?

    
asked by anonymous 08.02.2018 / 21:58

1 answer

0

When I had this problem it was that my application used a framework A that depended on another framework B and I had only linked Framework A in my project, that is, the problem is that some framework that you used has a dependency that does not Cocoa Pods is just linking the missing framework to the project, now with cocoa pods check the folder where it copies the dependencies and see what is missing.

    
14.03.2018 / 13:05