j2me PushRegistry.RegisterAlarm and code signing
- by Mihir
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?