Reputation: 965
My project has weirdly started failing with no error messages. Ive tried cleaning the project and this had no effect. I know this is all a bit vague but i havent done anything to revert or undo. its just randomly started to happen. Can anyone suggest a way of debugging what the problem is?
Phil
Upvotes: 3
Views: 5086
Reputation: 3908
I needed to re-clone my git repository to see what the build issue actually was. In my case the build issue was related to a dev provisioning profile that was no longer valid. I was able to correct this easily and the build properly.
Upvotes: 0
Reputation: 275
I had the same issue. If you're using non-arc code in arc project, make sure you added "-fno-objc-arc" flags to .m files. instruction
Upvotes: 0
Reputation: 649
Have you tried clearing the derived data (Organizer->Projects / cmd + shift + 2) and then cleaning (cmd+shift+K)?
Maybe closing xCode and rebooting?
I've had it a few times and this worked for me sometimes.
Upvotes: 4