aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@qt.io>2020-07-28 11:40:16 +0200
committerRobert Loehning <robert.loehning@qt.io>2020-07-28 10:40:58 +0000
commitcf183a898d4d7ddeec3b70fccbd0e254a69be3b2 (patch)
tree5b95e86d0ccd0ac689f484b67c5c20257bf740f0
parent88be337b0d1dd6fc4abc71ff8ee10b9f230691a6 (diff)
Android: Clarify error message
Change-Id: Id85c6a96ec2ffcb3bfd027ffdcc99ff97e1dd8ac Reviewed-by: Assam Boudjelthia <assam.boudjelthia@qt.io>
-rw-r--r--src/plugins/android/androiddeployqtstep.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/android/androiddeployqtstep.cpp b/src/plugins/android/androiddeployqtstep.cpp
index 74bd30e2ea..96be06a696 100644
--- a/src/plugins/android/androiddeployqtstep.cpp
+++ b/src/plugins/android/androiddeployqtstep.cpp
@@ -213,9 +213,9 @@ bool AndroidDeployQtStep::init()
if (!selectedAbis.contains(info.cpuAbi.first())) {
Core::MessageManager::write(
- tr("Android: The selected device main ABI (%1) is not selected! The app execution or "
- "debugging might not work properly. Add it from Projects > Build > Build Steps > "
- "qmake > ABIs.")
+ tr("Android: The main ABI of the deployment device (%1) is not selected! The app "
+ "execution or debugging might not work properly. Add it from Projects > Build > "
+ "Build Steps > qmake > ABIs.")
.arg(info.cpuAbi.first()),
Core::MessageManager::WithFocus);
}