I wrote app in Qt 5.5 for ios. Executable has 78,6MB. I read that Apple App Store has limitations for apps: 4GB - executable + resources and 60MB for executable. My resources (images, fonts etc.) are embed into executable
myprofile.pro:
RESOURCES += qml.qrc \
images.qrc \
fonts.qrc \
sounds.qrc \
translations.qrc
Example access to image:
Image {
width: screenWidth
height: screenHeight
source: "qrc:/res/images/bgd.png"
fillMode: Image.PreserveAspectCrop
}
How to exclude resource from executable and how to access them?