Hello,
a manager is a container that need to be added to a screen.
You need an entry point for your application that contain the main method. That entry point need to extends UiApplication. Then you'll be able to push a screen with your manager.
You can try something like this :
Code:
public class MainApplication extends UiApplication {
public MainApplication() {
MainScreen screen = new MainScreen();
screen.add(new <YourManager>());
pushScreen(screen);
}
public static void main(final String[] args) {
MainApplication theApp = new MainApplication();
theApp.enterEventDispatcher();
}
}
Thank you, have a nice day.
--
Samuel D.