I’m developing an Android app with Qt 5.2.1. It’s working, but it’s not deploying any ttf font.
That’s my .pro file:
QML_FILES.source = source/qml/*
QML_FILES.files = *.qml
QML_FILES.target = .
ASSETS_FILES.source = source/assets/*
ASSETS_FILES.files = .
ASSETS_FILES.target = .
FONT_FILES.source = source/fonts/*
FONT_FILES.files = .
FONT_FILES.target = ./fonts
DEPLOYMENTFOLDERS += \
QML_FILES \
ASSETS_FILES \
FONT_FILES
After build, my assets have all file (including ttf), but when I open the .apk file there’snt any ttf file (just qml and png).
What could be causing this? It’s a Qt bug or a bad configuration?
Sorry for any English mistake.
↧