Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

The application bundle does not contain a valid identifier

I try to run my project but i get the following error "The application bundle does not contain a valid identifier."

here my info.plist

enter image description here

I followed other answer on the question. I don't have any "Ressources" folder inside my project.

Thanks for your help

like image 357
panic Avatar asked Jun 10 '16 14:06

panic


2 Answers

I solve this problem after I delete all build files by Xcode. Your build file path at Xcode > Preferences > Locations > Derived Data

If you didn't change the default path, Your path is like

File Path

I just deleted all files under DerivedData

like image 80
Hailong Avatar answered Sep 27 '22 23:09

Hailong


In my case, this problem occurred when I manually removed a pod from my file browser in XCode. In order to fix it, I deleted the associated entry in my podfile, and ran 'pod install' from the terminal. Additionally, I had to delete the relevant search paths and other references to that pod. And of course I had to clean the project.

like image 33
Sjakelien Avatar answered Sep 27 '22 23:09

Sjakelien