I am trying to make an icon for my Qt 4.6.3 application, which is currently running on Symbian S60 5th edition. The application runs fine, except for its icon, which I have been unable to set by any means. I have read and tried a number of articles, including [1], [2], [3], [4] and [5], but in vain. What could I be doing wrong, or what should I try?
Share
The problem turned out to be related to
qmake. For some reason (possibly related to DST changes), it did not detect the changes in my.profile, and did not update theMakefile. The solution turned out to be three simple steps:ICON = youricon.svgin the.profile.Makefileand rebuild the application.This worked for me. I hope it works for you.