Hosam Aly
Hosam Aly

Reputation: 42453

Application icon on Qt 4.6.3 / Symbian S60 5th Edition

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

Answers (2)

Harmiih
Harmiih

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

Hosam Aly
Hosam Aly

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:

  1. Create and use an icon in SVG 1.1 Basic format.
  2. Add ICON = youricon.svg in the .pro file.
  3. Delete the file Makefile and rebuild the application.

This worked for me. I hope it works for you.

Upvotes: 2

Related Questions