I want to sync database from Server to Android (One way) in background on BOOT_COMPLETED.
- My service is of long duration
- I want to get
JSON
from server - Access local sqlite db.
- download image from url i got from JSON
Should I use Service or Service
with Thread
or IntentService
?