Reputation: 13818
How do I make my application come at start-up? I'm using a Nokia N97 phone emulator on my PC. I'm developing using Java for Symbian S60 5th edition.
Upvotes: 0
Views: 1156
Reputation: 1789
On S40 you can auto-start midlets with Nokia-MIDlet-auto-start. For a lot of application 'auto-start'-like behaviour can be achieved with the Push Registry. I presume you have explored this as a possibility?
Upvotes: 0
Reputation: 890
With Java, as far as I know, you can't, at least not directly. With C++ you can use the Startup List Management API. It might be possible to write a C++ shim that launches your Java app, but I don't think I've ever seen that.
Upvotes: 1