Starting from Android Qt Creator without ministro is easy, just go in the Projects tab and choose the Run view, there you can choose the Deploy Configurations.
You'll get more information on this page: http://sourceforge.net/p/necessitas/wiki/How%20to%20write%20Qt%20apps%20for%20Android/
Cheers,
--
daminetreg
----- Message d'origine -----
De: Leaf John <leaf...@gmail.com>
Date: Tue, 15 Mar 2011 22:38:37 -0700 (PDT)
Sujet: How to use qt without ministro?
À: android-qt <andro...@googlegroups.com>
AFAIU, Ministro installs device system wide Qt libs.
If you don't want that, then you need to deliver the Qt libs
in your .apk package.
I did that in my app and it works.
--
Best regards/Schöne Grüße
Martin
() ascii ribbon campaign - against html e-mail
/\ www.asciiribbon.org - against proprietary attachments
in the file res/values/libs.xml include e.g.
<?xml version='1.0' encoding='utf-8'?>
<resources>
<array name="bundled_libs">
<item>QtCore</item>
<item>QtXml</item>
<item>QtGui</item>
<item>QtNetwork</item>
<item>QtSql</item>
<item>QtSvg</item>
<item>Qt3Support</item>
</array>
</resources>
The order of the libs is important as Android loads them in this order and
a loaded lib must be able to resolve all symbols.
--
Best regards/Schöne Grüße
Martin
() ascii ribbon campaign - against html e-mail
/\ www.asciiribbon.org - against proprietary attachments
Geschenkideen, Accessoires, Seifen, Kulinarisches: www.bibibest.at
<?xml version='1.0' encoding='utf-8'?>
<resources>
<array name="qt_libs">
<item>QtCore</item>
<item>QtGui</item>
</array>
<array name="bundled_libs"/>
</resources>
I don't know why? I have tried serial times today.
sorry for this silly question.
> <?xml version='1.0' encoding='utf-8'?>
> <resources>
> <array name="bundled_libs">
> <item>QtCore</item>
> <item>QtXml</item>
> <item>QtGui</item>
> <item>QtNetwork</item>
> <item>QtSql</item>
> <item>QtSvg</item>
> <item>Qt3Support</item>
> </array>
> </resources>
>
> The order of the libs is important as Android loads them in this order and
> a loaded lib must be able to resolve all symbols.
>
> --
> Best regards/Schöne Grüße
>
> Martin
> () ascii ribbon campaign - against html e-mail
> /\ www.asciiribbon.org - against proprietary attachments
>
> Geschenkideen, Accessoires, Seifen, Kulinarisches:www.bibibest.at
>
> signature.asc
> < 1KViewDownload