Questions tagged [jobservice]
110 questions
0
votes
1 answer
How to cancel scheduler job when alarm fire off
I have 2 alarms in one alarm I'm starting job scheduler service that sends notifications every 30 minutes and at the second alarm I want to cancel this scheduled job service, also I'm sending notification on main thread I didn't make separate thread…

blackHawk
- 6,047
- 13
- 57
- 100
-1
votes
1 answer
Does Job Service stops after a reboot?
I have initialized a job service using JobScheduler that runs periodically. I reschedule this service after a reboot. Does this service stops after the device reboots? Or is it still running?

Faz
- 322
- 2
- 14
-1
votes
1 answer
Background Service not working on 7+ android version
I want to show local notification in an Android app that i am working. notification are based on network transaction completed in background.
I have tried service, intent service, jobservice etc but nothing is working when the app is closed.please…
-1
votes
1 answer
Null object reference of jobFinisced
I'm building an app with a JobService. This JobService should to start a service every 1 minutes.
This is my JobService class:
public class BleJobService extends JobService {
JobParameters params;
DoItTask doIt;
@Override
public…

bircastri
- 2,169
- 13
- 50
- 119
-1
votes
2 answers
JobService not working properly while posting data to server using volley
I'm trying to sync SQLite data with mysql, for this created JobService which sync data every 15 seconds(Sync only those data which status unsync with mysql). This works perfectly with localhost(xampp server).
but problems occurred with web server :…

Omkar
- 3,040
- 1
- 22
- 42