Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Failed to install app error: Invalid Bundle - No Apple Watch Binary

I'm trying to develop an extension of my app for the Apple Watch.

Instead of install the app on the watch, I have this error:

AppName Failed to install AppName, error: Invalid Bundle - No Apple Watch Binary

In my info.plist files...

For the extension, I have:

<key>CFBundleIdentifier</key>
    <string>com.mycompany.AppName.watchkitextension</string>
<key>WKAppBundleIdentifier</key>
    <string>com.mycompany.AppName.watchkitapp</string>

For the WatchKit app, I have:

<key>CFBundleIdentifier</key
    <string>com.mycompany.AppName.watchkitapp</string>
<key>WKCompanionAppBundleIdentifier</key>
    <string>com.mycompany.AppName</string>

And for my app, I have:

<key>CFBundleIdentifier</key>
    <string>com.mycompany.AppName</string>

Did I miss something?

like image 511
ejanowski Avatar asked Apr 30 '15 16:04

ejanowski


1 Answers

This error plagued me for about 7 hours then I restarted my watch out of desperation and the error went away.

like image 72
Daniel Glaser Avatar answered Sep 29 '22 14:09

Daniel Glaser