Android: display Android 13 packages correctly in sdkmanger

Change-Id: I49cc45dce0523e55ff56df7e429dd9dc93f46534
Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
This commit is contained in:
Assam Boudjelthia
2022-03-06 00:52:04 +02:00
parent f268c2b1fa
commit e1643c8903
2 changed files with 4 additions and 0 deletions

View File

@@ -181,6 +181,8 @@ int platformNameToApiLevel(const QString &platformName)
apiLevel = 30;
else if (apiLevelStr == 'S')
apiLevel = 31;
else if (apiLevelStr == "Tiramisu")
apiLevel = 33;
}
}
return apiLevel;