Tizen Developers

Menu
Sites
Language
How to debug QT apps built for Tizen?

Hi all,
How to debug QT apps for Tizen (collect log) e.t.c?
Thank you in advance.
Alexey.

Responses

3 Replies
Tomasz Olszak

You can run application from command line like in other linuxes. Login to device or emulator with

sdb root on
sdb shell
cd /opt/usr/apps/APP_ID/bin
./AppBinary.exe

This way you get stdout and stderr output.

Jarosław Staniek

In addition here's a place to go for generic info about debugging of Qt and Qt Quick code: http://qt-project.org/doc/qt-5.1/qtdoc/testing-and-debugging.html

Alex Dem

Thank you for responses.
Alexey.