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:
Robert Loehning
2020-07-28 13:26:04 +02:00
parent 412ffe55bb
commit fb17795a9f

View File

@@ -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;
}