1

I have got this really strange error where my app works fine on the simulator and can be built but when I try and run it on my device I get the following error:

enter image description here

Edward
  • 2,864
  • 2
  • 29
  • 39
  • Possible duplicate: [Application bundle does not contain a valid identifier](http://stackoverflow.com/questions/6072755/error-the-application-bundle-does-not-contain-a-valid-identifier). – degapps Jan 17 '17 at 01:02
  • this isn't a duplicate - my app works on the simulator – Edward Jan 17 '17 at 08:11

1 Answers1

2

if your bundle id is correct,you can try to delete derivedData folder. find your path at: Xcode/Preferences/Locations tab it works for me!

Robert TuanVu
  • 843
  • 6
  • 17
  • In my case, the trouble was present on real devices only, I was able to install the application on the xCode simulators. After cleaning the derivedData , the app has been installed successfully on real devices. Thank you for the trick. – tryp Apr 24 '18 at 06:47