Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Embedded Binary Validation Utility Error

Since yesterday Xcode is doing stupid things while trying to run my WatchKit app on my iPhone. It gives me the error:

Embedded Binary Validation utility Error

Error: warning: Is a directory

It's not very helpful and it seems like it's complaining about provisioning profiles for my Watchkit Extension target. I think I set it up correctly by following this answer.

This is how I have set up my profiles. Three App IDs and six profiles (three for development and three for distribution).

Main app: enter image description here

WatchKit Extension: enter image description here

WatchKit Watch App: enter image description here

like image 238
BalestraPatrick Avatar asked Apr 13 '15 17:04

BalestraPatrick


1 Answers

I had my custom framework linked and embedded in both the WatchKit Extension and the App. Removing the framework from General > Embedded Binaries of the WatchKit Extension fixed it for me. I did have to delete my Build folder and restart Xcode.

like image 109
respectTheCode Avatar answered Oct 15 '22 23:10

respectTheCode