How to make Android Service run even when the device is not awake?
- by Deema
hi
my application objective is to save location updates every ,let say, 20 minuets .
I used service and it worked fine , but when i lock the screen or it is locked automatically the service stop running .
when i unlock it , service runs again.
highlight on my code:
Service xxx
onCreat(){
call timer();
}
timer(){
code
}
How to make my code run all the time in all conditions?