After successfully compiling the project in Xcode 6, I am unable to run it in the simulator with the above mentioned message. I did all the possible research, tried everythi
Cleaning the build folder resolved the issue for me. I hope it helps someone!
(While holding down the Alt-key: Product > Clean build folder)
I had this problem when trying to run UI tests in a project containing AWS Cognito.
Here's how I resolved it.
Might be related to this issue: "This app contains an app extension with an illegal bundle identifier" issue
I had to format the bundle identifiers for my app and extension as follows:
com.company.AppName
com.company.AppName.Extension
If you are here after having issues doing an integration with WatchOS 2.0, go to - ~/Library/Logs/CoreSimulator/[Device UDID]/system.log
and if says something like WatchKit 2 app has frameworks; that's not allowed.
then follow the link below.
http://zyafa.me/blog/watchos-2-and-embedded-frameworks
Do not add the google maps framework to the embedded lib section this solved my build break.
I had this error in developing app for Apple Watch after adding in Info.plist: "App Transport Security Settings" and "Allow Arbitry Loads" = YES. (In WatchKit App, in WatchKit Extension is good!!) Deleting this two rows, it keeps working.