10

I am using xcode 8.2.1. For the first time or just after deleting the app from the simulator it's working fine. But from the second time I got the following error!!!

enter image description here

I tried to solve my problem from the following links, but those also doesn't work for me.

Failed to load Info.plist from bundle

Unable to run app in Simulator : Xcode beta 6 iOS 8

Any other solution?

Community
  • 1
  • 1
Tapas Pal
  • 7,073
  • 8
  • 39
  • 86

3 Answers3

14

First Try

Cleaning the build folder resolved the issue for me. I hope it helps someone!

(While holding down the Alt-key: Product > Clean build folder)

Second Try

Launch/Relaunch the iphone simulator then go to simulator->reset contents and settings. Then,quit all the application and restart your mac.

ViJay Avhad
  • 2,684
  • 22
  • 26
  • Thanks for posting... it has been already fixed but I am not sure how as I tried lots of tricks. Hope this will help others. – Tapas Pal Jan 27 '17 at 16:41
  • Thanks! Second try worked. This seems to happen so rarely nowadays, that resetting the simulator is not the first thing I think of when Xcode starts acting funny. – Nitin Alabur Apr 20 '17 at 04:52
  • In addition to resetting the contents in simulator, also shutdown Xcode and clean the derived data folder. That worked for me. – ArdenDev May 13 '17 at 01:14
5

Please, check if your Bolt target has a Info.plist in Identity as the image below, if not, click on the button with title Choose Info.plist File... and choose it. enter image description here

GeraldoBastos
  • 303
  • 2
  • 4
5

Check your bundle identifier. If you create your project with bundle identifier like com.example.com and then you change your bundle identifier then it causes above error.I have same issue, then i check my bundle identifier which i was set during project setup & then i change it it causes above error.

Anas
  • 335
  • 5
  • 7