Skip to content
Snippets Groups Projects
Commit 5d326c52 authored by Christian Stenger's avatar Christian Stenger Committed by Christian Stenger
Browse files

iOS: Fix detection of device information for older Xcode


Task-number: QTCREATORBUG-14072
Change-Id: Ia69aebcb4183ccca7ce8d2332b1482cbefba00a7
Reviewed-by: default avatarEike Ziller <eike.ziller@theqtcompany.com>
parent e488f10c
No related branches found
No related tags found
No related merge requests found
......@@ -443,7 +443,7 @@ void IosToolHandlerPrivate::processXml()
else if (statusStr.compare(QLatin1String("failure"), Qt::CaseInsensitive) == 0)
status = Ios::IosToolHandler::Failure;
emit didTransferApp(bundlePath, deviceId, status);
} else if (elName == QLatin1String("device_info")) {
} else if (elName == QLatin1String("device_info") || elName == QLatin1String("deviceinfo")) {
stack.append(ParserState(ParserState::DeviceInfo));
} else if (elName == QLatin1String("inferior_pid")) {
stack.append(ParserState(ParserState::InferiorPid));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment