I read many things about the emulator that I can use (I have Nokia Qt SDK) for N900 device simulation.

I tried to launch it, but I have no idea what is happening:
If my project is selected and i target Maemo, then I launch Maemo emulator - the emulator starts, but nothing happens.
If I target the Maemo and try to Build project I get following message in the Application Output:
"Cleaning up remote leftovers first ...
Error running initial cleanup: Could not connect to host.."

If I need to provide more information for you to help me - no problem, just ask for it.

I have a Maemo device configuration with following settings:
Configuration: Emulator
Name: Emulator
Device type: Maemo emulator
Authentication type: Password
Host name: localhost
Ports:
SSH: 6666
Gdb server 13219
Connection timeout: 10s
Username: developer

In the left side I selected Projects->Targets->Maemo->Run and i changed Device configuration to Emulator.

I think I'll add my .pro also:

Qt Code:
  1. QT += core gui
  2.  
  3. TARGET = maemo-try
  4. TEMPLATE = app
  5.  
  6.  
  7. SOURCES += main.cpp\
  8. mainwindow.cpp \
  9. customcalendarwidget.cpp
  10.  
  11. HEADERS += mainwindow.h \
  12. customcalendarwidget.h
  13.  
  14. CONFIG += mobility
  15. MOBILITY =
  16.  
  17. symbian {
  18. TARGET.UID3 = 0xefa169f0
  19. # TARGET.CAPABILITY +=
  20. TARGET.EPOCSTACKSIZE = 0x14000
  21. TARGET.EPOCHEAPSIZE = 0x020000 0x800000
  22. }
To copy to clipboard, switch view to plain text mode