I am trying to make my Watchface and Widget working on the new Approach S60 Golf watch. Unfortunately this turned out to be not that easy :)
The issue I have is that neither my Watchface nor my Widget are starting at all. The only error I get in the simulator is:
Failed invoking <symbol>Symbol Not Found Error
nothing else.
I debugged it and found out that this watch does not like when providing a WatchfaceDelegate object in "getInitialView". This does not work:
function getInitialView() {
var oView = new MyWatchfaceView();
return [ oView, new MyWatchfaceController(oView) ];
}
whereas this seems to work:
function getInitialView() {
var oView = new MyWatchfaceView();
return [ oView ];
}
I also checked my WatchfaceDelegate, removed the view parameter, but nothing helped.
Is this a known issue?
Thanks!
Bye