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:
Asked
Active
Viewed 2,772 times
1
-
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 Answers
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