Skip to content

Use flat hierarchy for plugin paths on Android

Gabriel Souza Franco requested to merge work/gbs/android-plugins into master

The Android build system does not support subfolders inside the libs folder. This results in no plugins being included in the APK. This uses the same convention Qt uses for its plugins, namely renaming the resulting file as:

libplugins_original_path_to_plugin.so

The plugin loading code is ifdef'ed to only use this schema on Android.

Merge request reports