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
There are a number of things that can cause this error. The best general answer is to search the console log for CoreSimulator
, as the simulator logs the underlying problem when it displays this message.
I had this problem when I added an Apple Watch target to my app, and accidentally removed the InterfaceController.m file. Adding back the file in the target fixed the problem.
For me, the problem occurs because I added my framework (GoogleMobileAds.framework
in my case) to Embedded Binaries, not Linked Frameworks and Libraries.
For your information, AdMob instructs you to use Add Files to "Your Project"
menu on Xcode, but I was too lazy to obey the instruction.
It's solved for me.
I get rid from the issue by the given steps for simulator
1. Way
2. Way
You can do only be the given line, it works for me
The last one which is more important change your Bundle Identifier by "com.yourcompanyname.projectname" like "com.facebook.Facebook"
Thanks and enjoy programming.
I got this issue by adding a folder reference named "Resources".
If I give it another name, then it runs !