Re: [Interest] Including Qt Quick 2 extension plugin in Android App

2018-10-05 Thread René Hansen
I don't have the problem if I just want a plain shared library, in that case just bundling the .so with ANDROID_EXTRA_LIBS works fine. Isolating code into an extension plugin with both QML components and Qt classes and using that in separate apps is my goal. If anyone has a working example + buil

Re: [Interest] Including Qt Quick 2 extension plugin in Android App

2018-10-04 Thread Jérôme Godbout
Not sure if it might help, but I had some problems with bundling some lib with my application and I end up with this in my project: android/lib // for my .so library, note the lib without s here android/libs // for my .jar library Then I add those lib into the extra libs into my .pro: ANDROID_E

[Interest] Including Qt Quick 2 extension plugin in Android App

2018-10-04 Thread René Hansen
Hi everyone, I can't seem to get the voodoo right on something that should be trivial. My use case is this; I have two Android apps, which uses similar logic that I'd like to extract and share between them, in the form of an extension plugin. Easy peasy right? Well, I just can't seem to figure i