Those are my first steps in IOS applications development and I\'m facing some problem that I can\'t figure out.
error: Embedded binary is not signed with the
Swift 5 . Simple way in my case check this screen shot i am done
Sometimes none of the solution on Stackoverflow works. In that case,
This error is also shown when deployment target of your Today extension is newer than the parent app. They must be the same.
I have iOS app set to 10.0 and added Today extension which was automatically set to 11.4 as the latest. This caused the error to appear. Simply changing the Deployment target of the extension target to 10.0 resolved the issue.
I was having this issue when I migrated to Xcode 10 and managed to fix it by updating the architectures in "Build Settings"> "Valid Architectures" for the Watch target to
$(ARCHS_STANDARD)
This thread helped me out a lot: https://forums.developer.apple.com/thread/107563
Check if you have more targets like oneSignal or other else and check if you have the same team of the main target.
Oddly enough, I had to remove the products folder from my project in order to fix this error. Xcode crashed then, after reopening, worked like a charm!