I use Fluid qml library/plugin.
I installed the library using qmake and make, its installation path is in Qt/5.11.0/android_armv7/qml.
Find source tree is here.
There is a per-project installation example in it. I tried to modify its pro file to reduce APK size. Here is the pro file here.
I couldn't include the plugin in pro file while using ANDROID_DEPLOYMENT_DEPENDENCIES. This is what I tested.
Getting Error:
W/libsrc.so( 4200): (null):0 ((null)): QQmlApplicationEngine failed to load component
W/libsrc.so( 4200): (null):0 ((null)): qrc:/main.qml:4 plugin cannot be loaded for module "Fluid.Controls": Cannot load library /data/data/org.qtproject.example.src/qt-reserved-files/qml/Fluid/Controls/libfluidcontrolsplugin.so: (dlopen failed: could not load library "libQt5Svg.so" needed by "libfluidcontrolsplugin.so"; caused by library "libQt5Svg.so" not found) W/libsrc.so( 4200):
Question:
How to include a specific plugin or library in pro file while using _ANDROID_DEPLOYMENT_DEPENDENCIES?