I am using qt 5.2 and I have been trying to figure out how to have extra files along with my application when it installs. I want to be able to use adb shell
and then cd
into data/data/org.qtproject.example.myProjectPath/
. I would like to be able to find that file somewhere. I had posted a question about this already but was unable to find answers. Some people did reply and there was mentioning of assets but qt 5.2 doesn't create an assets file. I was also told to try something along the lines of
deployment.files += program
deployment.path = /assets
INSTALLS += deployment
and also
documentation.path = /usr/local/program/doc
documentation.files = docs/*
INSTALLS += documentation
Neither of these I could get to work. I was also given this link but it does not seem to be Android-specific.