Initial Project Setup. No reaction to Button click.

Hello there,

I'm new to Garmin Connect IQ app development and I'm trying to create an app for my Forerunner 235.

I'm using SDK version 4.2.4 and the minimum API version 1.4.0 (the FR 235 is not available in higher versions).

When I tried to run the initial project created by "Monkey C: New Project", the simulator started and the FR235 was displayed. The message "Click the menu button" was shown on the display, but there was no reaction to the button click. In the AppDelegate.mc, the WatchUi.SLIDE_UP is configured as follows:

class customAppDelegate extends WatchUi.BehaviorDelegate {

function initialize() {
BehaviorDelegate.initialize();
}

function onMenu() as Boolean {
WatchUi.pushView(new Rez.Menus.MainMenu(), new customAppMenuDelegate(), WatchUi.SLIDE_UP);
return true;
}

}

The only button that is working is the back button on the right side of the device. When I click this button, the blue triangle is shown. Clicking on all other buttons has no effect.

I also tried to build the app for the device and copied it to the device. I was able to start the app, but the result was the same: no reaction to any button click.

Do you have any ideas what i'm doing wrong?

Thank you in advance.

Felix