I just read this question about packaging for Android:
Android – Application (apk) Maximum size
Where it mentions that apk files have a maximum size for the market place:
http://www.google.com/support/androidmarket/developer/bin/answer.py?hl=en&answer=113469
When using the Qt for Android:
http://sourceforge.net/p/necessitas/home/necessitas/
How much space does that take up?
You don’t have to include the
Qtlibraries in your application so the space of the app depends only on the application itself.The guy behind
necessitashas also createdministrowhich fetches theQtlibraries required by your application.Have a look at this [QuickStart video] which demonstrates the process of writing/installing a
QtApplication inAndroidEDIT
Of course if you want you can select to use deploy local qt libs with your application instead of the device libs. In this case the extra space required depends on the
Qtmodules you use.