Setting QV4_NO_SSA to prevent crashes on older Android phones
-
Upon creating an app using QT 5.3.2 and android-21 SDK, I noticed crashes on older Android phones such as Samsung Galaxy I and II.
The way I found to solve this was to set QV4_NO_SSA to one in the main.cpp file with the command qputenv("QV4_NO_SSA", "1");
Briefly looking at the QT library, it seems like that will only affect the optimization of any QML code.
Has anyone found a more elegant fix for issues such as this, or perhaps it's all handled in a newest release of the QT libraries?