forked from qt-creator/qt-creator
Android: Fix typo
Fix typo that could possibly cause a nullptr access later on in the code. Change-Id: I8f17ff52e54fee25b39b7661ee250956b9c513b6 Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -179,7 +179,7 @@ bool AndroidDeployQtStep::init()
|
||||
RunConfiguration *rc = target()->activeRunConfiguration();
|
||||
QTC_ASSERT(rc, return false);
|
||||
ProjectExplorer::BuildConfiguration *bc = buildConfiguration();
|
||||
QTC_ASSERT(rc, return false);
|
||||
QTC_ASSERT(bc, return false);
|
||||
|
||||
auto androidBuildApkStep = bc->buildSteps()->firstOfType<AndroidBuildApkStep>();
|
||||
int minTargetApi = AndroidManager::minimumSDK(target());
|
||||
|
||||
Reference in New Issue
Block a user