Problem similar to this one:
https://forums.garmin.com/showthread...ive-on-fr735xt
But it is for regular view:
class TestingAppView extends Ui.View
class TestingAppDelegate extends Ui.BehaviorDelegate
This code works in simulator (source in attachments)...
App displays 13 for UP button and 8 for DOWN in simulator but not in real device.
function onKeyPressed(event) {
// Skip
var key = event.getKey();
if (key != Ui.KEY_UP && key != Ui.KEY_DOWN) {
return true;
}
// Key
App.getApp().data.setMessage(key.toString());
Ui.requestUpdate();
return false;
}
But it does not work in real device.
"Back" does not work in progress view and "Up/Down" does not work in usual views (delegates).
So we cannot use watches for our purposes (control Android app on the phone).
It is mission critical issues for us!
P.S. This post is clone of original post in general forum:
https://forums.garmin.com/showthread...664#post947664
TestingApp.zip