Firebase Job Dispatcher not Scheduling jobs on OREO devices

后端 未结 1 1983
眼角桃花
眼角桃花 2020-12-22 07:04

I have a firebase job dispatcher which is scheduled to run whenever network changes ,the job is working perfectly on a marshmallow device (23 API level) but the same code wh

相关标签:
1条回答
  • 2020-12-22 07:21

    well the problem here is probably because you use GooglePlayDriver which relies on google play services to be presented on the devices. If the services are not available the job will not be scheduled. So if you target on devices higher than 5.0 (which is true in most cases) you have to use android's JobScheduler build in since lollipop.

    0 讨论(0)
提交回复
热议问题