Widget does not run on Fenix 6 in debugger

Hi,

I have a Widget which runs without a problem on Fenix 3 & 5, but it does nothing on Fenix 6, in Debugger on Eclipse.

using Toybox.Application;

class BigFontIchtusApp extends Application.AppBase {
    var mainView;
    var mainDelegate;
    var detailView;

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

    // onStart() is called on application start up
    function onStart(state) {
    }

    // onStop() is called when your application is exiting
    function onStop(state) {
    }

    // Return the initial view of your application here
    function getInitialView() {
        mainView = new BigFontIchtusView();
        mainDelegate = new BigFontIchtusDelegate(mainView.method(:onReceive));
        detailView = new BigFontIchtusDetailView();
        return [mainView, mainDelegate, detailView];      
    }

}

With the debugger , it does initialize(), Start(), but then nothing anymore.

Seems not to come to getInitialView() and no message at all on Console! Blank white!

I see IQ Icon on watch and AppTitle.

When then closing the debugger, it comes to onStop()  !!

(with Fenix 5 it does getInitialView, but not with Fenix 6)

Who can help me? Any idea?

Thanks

Marcel

((( I have always problems with breakpoints, which are not added (message by eclipse), why this? Do you have same problem?)))