Hello, for those who are interested, I finally managed to get deploy my
custom c++ plugin without any modifications on resources files. I simply
re-read the documentation carefully (
http://qt-project.org/doc/qt-5/deployment-android.html) and especially the
paragraph about res/vaues/libs.xml. So my
Ok then, I'll give it a try. It's prettier than my first method. Thanks
Le 27 mai 2014 00:52, "Preet" a écrit :
> On Sun, May 25, 2014 at 1:58 AM, Frédéric Martinsons
> wrote:
> > I'm not sure to understand completely. You reproduce the directory
> structure
> > after the build phase of your plu
On Sun, May 25, 2014 at 1:58 AM, Frédéric Martinsons
wrote:
> I'm not sure to understand completely. You reproduce the directory structure
> after the build phase of your plugin in the qrc, build it manually and copy
> it to the android data dir ? Or you simply embed an archive of the directory
>
I'm not sure to understand completely. You reproduce the directory
structure after the build phase of your plugin in the qrc, build it
manually and copy it to the android data dir ? Or you simply embed an
archive of the directory and extract it on the first run at the right place
?
Le 25 mai 2014
Ok can you give me the id. I would follow this. For the dependencies, my
plugin is pure qt so I imagine the qt libs are already loaded at the time
of the import.
Le 24 mai 2014 14:09, "Jason H" a écrit :
> I've filed bugs against 3.0 and so the 3.1 creator should be working
> better, if they made
>> Have you any hints to give me to get everything works. I managed to launch
>> my application by reproducing the directory structure on the target with
>> "adb shell mkdir and adb push) after the APK install but it's very ugly and
>> I would to have a self contained APK.
I worked around this by
I've filed bugs against 3.0 and so the 3.1 creator should be working better, if they made it in.
Note that the dynamic loader in android can only load libraries whose dependencies are already satisfied, unlike the real ld which will fetch and load dependencies.
--
Sent from my Androi
Hello Qt,
I recently downloaded the last Qt release (5.3.0) and I try to porting my
functional QML application to Android. I encountered a problem with
integrating my custom c++ plugin into the APK. The directory structure I
got on desktop is the following:
MyProject/
MyBinary
MyPlu