Android: Fix compilation

Change-Id: I72be1ccb8afc235441c9c1ba65d3cef4fc6e6779
Reviewed-by: David Schulz <david.schulz@qt.io>
Reviewed-by: BogDan Vatra <bogdan@kdab.com>
This commit is contained in:
Orgad Shaneh
2017-01-19 21:38:12 +02:00
committed by Orgad Shaneh
parent c05a3fdb3d
commit 5f3442d25e

View File

@@ -184,7 +184,7 @@ bool AndroidBuildApkStep::verifyKeystorePassword()
{
if (!m_keystorePath.exists()) {
addOutput(tr("Cannot sign the package. Invalid keystore path(%1).")
.arg(m_keystorePath.toString()), ErrorOutput);
.arg(m_keystorePath.toString()), OutputFormat::Stderr);
return false;
}
@@ -204,7 +204,7 @@ bool AndroidBuildApkStep::verifyCertificatePassword()
if (!AndroidManager::checkCertificateExists(m_keystorePath.toString(), m_keystorePasswd,
m_certificateAlias)) {
addOutput(tr("Cannot sign the package. Certificate alias %1 does not exist.")
.arg(m_certificateAlias), ErrorOutput);
.arg(m_certificateAlias), OutputFormat::Stderr);
return false;
}