Reputation: 42453
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?
Upvotes: 0
Views: 963
Reputation: 81
If you think you have done all the right steps and your icon isn't too complex, try restarting your device. Symbian has some icon cache and it is updated on restart.
Upvotes: 1
Reputation: 42453
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 .pro
file, and did not update the Makefile
. The solution turned out to be three simple steps:
ICON = youricon.svg
in the .pro
file.Makefile
and rebuild the application.This worked for me. I hope it works for you.
Upvotes: 2