Search code examples
androidc++qtconditional-compilation

Is there an #ifdef in Qt to determine if we're building for Android


I have an Android-specific fix in my Qt application, and I want that code to be compiled only when building for Android.

Is there an #if or #ifdef that will do that?


Solution

  • Yes, you can find it in the documentation, so just use:

    #ifdef Q_OS_ANDROID