Hi developers,
I am using 6630 and installing a sis file, with option FR,RI ,but application runs for a while and disappears, how to make application run continuously, after installation completes.
any sol please,
thanks in advance,
vikas
Hi developers,
I am using 6630 and installing a sis file, with option FR,RI ,but application runs for a while and disappears, how to make application run continuously, after installation completes.
any sol please,
thanks in advance,
vikas
just don't exit your app, and implement some kind of autostarted for it.
yucca
yucca, I am not getting!
I am not exiting app, does FR,RI not starts app automatically forever?
how to implement some kind of autostarted for app?
I want to starts my app as soon as installation completes.
Please, suggest me changes.
Here is pkg file
&EN
; standard SIS file header
#{"installjar"},(0x0B5276FC),1,0,0
;Supports Series 60 v 0.9
(0x101F6F88), 0, 0, 0, {"Series60ProductID"}
"C:\Symbian\8.0a\S60_2nd_FP2_CW\Epoc32\release\thumb\urel\installjar.APP"-"!:\system\apps\installjar\installjar.app",FR,RI
"C:\Symbian\8.0a\S60_2nd_FP2_CW\Epoc32\Data\z\system\apps\INSTALLJAR\installjar.rsc"-"!:\system\apps\installjar\installjar.rsc"
if you specify in pkg that your app/exe is run during instyallation, it should just run it and in case you have not specified Run-Waited, thyen the installer shouldn't care if it stays on running, its your own application that decides when it is supposed to exit, so it should be 100 % up to your own logic to keep it running ones iot has been started.
Then if you also want it to run after phone boots up, then you need to implement autostarter functionlity, and the implementation depends on your target, for 2nd edition, easiest way would propably be to mis-use recognizers.
yucca
Thanks yucca,
Now its clear.
I will try to make app running through code explicitely.