forked from qt-creator/qt-creator
Android: Add missing full stop and fix message
sdk_definitions.json does not have to contain 'lldb;x.y' anymore as this is part of the base installation nowadays. Change-Id: I39bc988674a8e60b22cd852b890224ac1c87e8c8 Reviewed-by: Assam Boudjelthia <assam.boudjelthia@qt.io>
This commit is contained in:
@@ -530,12 +530,9 @@ void AndroidRunnerWorker::asyncStartHelper()
|
||||
runAdb({"shell", "run-as", m_packageName, "chmod", "a+x", packageDir.trimmed()});
|
||||
|
||||
if (!QFileInfo::exists(m_debugServerPath)) {
|
||||
QString msg = tr("Cannot find C++ debug server in NDK installation");
|
||||
if (m_useLldb) {
|
||||
msg += "\n" + tr("The lldb-server binary has not been found. Maybe "
|
||||
"sdk_definitions.json does not contain 'lldb;x.y' as "
|
||||
"sdk_essential_package or LLDB was not installed.");
|
||||
}
|
||||
QString msg = tr("Cannot find C++ debug server in NDK installation.");
|
||||
if (m_useLldb)
|
||||
msg += "\n" + tr("The lldb-server binary has not been found.");
|
||||
emit remoteProcessFinished(msg);
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user