j2me PushRegistry.RegisterAlarm and code signing
Posted
by
Mihir
on Stack Overflow
See other posts from Stack Overflow
or by Mihir
Published on 2011-11-21T07:34:55Z
Indexed on
2011/11/21
9:51 UTC
Read the original article
Hit count: 280
I am developing an app on Nokia C2-00
in which I am using push registry for auto start of app on some fixed time
ex.
PushRegistry.registerAlarm("ClassName", alarm.getTime());
this is working perfect and it starts app on that time.
But this is asking me for permissions two times.
1) when I am registering alarm using PushRegistry.registerAlarm("ClassName", alarm.getTime());
2) when app start on that defined time.
in this and this link I found that if my application is signed then it will not ask for permission when app autostart.
but I am not sure about the time when my code will register alarm.
Will it ask for permission or not?
© Stack Overflow or respective owner