Sorry. I did not read correctly your post.
Here the piece of my .pro:
@
BUNDLE_DATA.files = $$PWD/ios/icons/Icon.png
$$PWD/ios/icons/Icon@2x.png
$$PWD/ios/icons/Icon-60.png
$$PWD/ios/icons/Icon-60@2x.png
$$PWD/ios/icons/Icon-72.png
$$PWD/ios/icons/Icon-72@2x.png
$$PWD/ios/icons/Icon-76.png
$$PWD/ios/icons/Icon-76@2x.png
$$PWD/ios/icons/Icon-Small.png
$$PWD/ios/icons/Icon-Small@2x.png
$$PWD/ios/icons/Icon-Small-40.png
$$PWD/ios/icons/Icon-Small-40@2x.png
$$PWD/ios/icons/Icon-Small-50.png
$$PWD/ios/icons/Icon-Small-50@2x.png
$$PWD/ios/launch.xib
@
I don't know such forums, but use google:
"IRC":https://www.yoctoproject.org/tools-resources/community/irc
"Freescale Yocto Project main page":https://community.freescale.com/docs/DOC-1616
...
And read official documentation
As Sam mentioned, QFontDatabase can help you to get more information on the fonts. That will help you to be sure on the font that you are using.
"Font familes":http://qt-project.org/doc/qt-4.8/qfontdatabase.html#families
I consider Qt today the most stable across all platforms.
QML be fantastic although initially complicated.
I use Qt on android AndroidApi7.
Believe me, if you do not use anything special as dll, your program is compatible on all platforms.
good luck
As far as I understand Qt 5.5 will bring some good news in this area, some patches have recently been merged. For older version (<= 5.4) support is simply missing.
Found it!
I must edit my .pro file in this line that the wizard added:
ANDROID_PACKAGE_SOURCE_DIR = $$PWD/<Project name>/android
And remove the project name leaving just:
ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android
All done.