Xcode 7 error: could not read CFBundleIdentifier from Info.plist (null)

Getting this error as shown below:

error: could not read CFBundleIdentifier from Info.plist (null) 

When I opened Xcode 7, he asked me to update the application to the recommended parameters, I did this, and then I started the project and received the above error. I have not changed anything in the project. What do I need to change here?

+7
ios xcode xcode7 info.plist
source share
3 answers

Move info.plist from Supporting Files in the Project Navigator on the left, to the root application folder with ViewController.m and h .

0
source share

Manesh

You just need to do update the whole info.plist file.

The Set Bundle identifier, the name of the Bundle again, will work correctly.

+10
source share

this simple problem in xcode is to open support files and move the info.plist file to the application root folder

0
source share

All Articles