Android: Employ debugging recipes

Change-Id: I5483fc94a1462bfe467903ef3b464959a5abf5ab
Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
This commit is contained in:
Jarek Kobus
2024-08-14 10:23:59 +02:00
parent c79e19bd56
commit 82bcccc2e8

View File

@@ -811,10 +811,6 @@ ExecutableItem AndroidRunnerWorker::pidRecipe()
<< "to:" << pidStorage->first;
m_processPID = pidStorage->first;
m_processUser = pidStorage->second;
if (m_useCppDebugger)
startNativeDebugging();
emit remoteProcessStarted(s_localDebugServerPort, m_qmlServer, m_processPID);
};
@@ -834,7 +830,11 @@ ExecutableItem AndroidRunnerWorker::pidRecipe()
}.withTimeout(45s),
ProcessTask(onUserSetup, onUserDone, CallDoneIf::Success),
Sync(onPidSync),
ProcessTask(onIsAliveSetup),
Group {
parallel,
startNativeDebuggingRecipe(),
ProcessTask(onIsAliveSetup)
},
postDoneRecipe()
};
}