我正在使用QtCreator來設計和部署Android應用程序。QtCreator:在Android上部署時如何查看程序輸出
在調試應用程序時,當我調用一些Java SDK代碼時,如果這個代碼調用System.out.println
,我會在QtCreator控制檯中看到消息。
現在,從C++/Qt代碼中,我找不到如何在QtCreator控制檯中顯示消息。
qDebug() << "Hello there";
qDebug("Hello you");
std::cout << "Hi guy" << std::endl;
std::cerr << "Hi guy 2" << std::endl;
帶和不帶CONFIG += console
被設定,沒有消息的以上是在QtCreator控制檯(「應用程序輸出」)是可見的。
有沒有人知道如何發送消息,以便在調試Android應用程序時在QtCreator控制檯中顯示消息?
編輯22/05/2015:創建錯誤報告https://bugreports.qt.io/browse/QTCREATORBUG-14498
您是否嘗試過使用'adb logcat'? – ahmed
不,我想要集成在QtCreator IDE中的東西 – jpo38