Hi, I need to write simply application which will be used as uninstaller in .sis package ( I need to use only CEikonEnv::QueryWin: or similar, no views and no dialogs - so no resources ). Problem I've got is that I can't nither
1) Write app that don't use resources -
I removed RESOURCE statement from .mmp,
I extended CEikApplication class and tried to override its function GetResourceFileName (or similar) - I returned empty desc and this didn't help - my application is crashing with (Not found) error - not found resources. :frown:
nor
2) Remove resources stub ( 60 bytes .rsc with no data in ) just before application exit - file is locked by Symbian OS and error is generated by RFs.Delete() == -12 (iirc). :redface:
It's very interested problem as for me - I'm searching thru all availaible information sources :icon1: with no success. 🙄
Thanks for any ideas - how to omit resource file usage or how to delete app's resources just before app termination. 😊