应用程序可能无法通过JobIntentService安排100个以上的独立作业

时间:2019-03-26 11:38:23

标签: android jobintentservice

这是我的JobIntentService

public class NotifierService extends JobIntentService {
     public static void enqueueWork(Context context, Intent work) {
         enqueueWork(context, NotifierService.class, JOB_ID, work);
     }

     protected void onHandleWork(Intent intent) {
         //simple if/else check
     }
}

但是,我从crashlytics遇到了很多崩溃,抱怨100 distinct jobs

Caused by java.lang.IllegalStateException: Apps may not schedule more than 100 distinct jobs
   at android.os.Parcel.readException(Parcel.java:1951)
   at android.os.Parcel.readException(Parcel.java:1889)
   at android.app.job.IJobScheduler$Stub$Proxy.enqueue(IJobScheduler.java:211)

有什么理由要解决吗?

在尝试加入新队列之前,我曾尝试取消它:

if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.LOLLIPOP) {
            JobScheduler scheduler = (JobScheduler) context.getSystemService(Context.JOB_SCHEDULER_SERVICE);
            if (scheduler != null) {
                for (JobInfo jobInfo : scheduler.getAllPendingJobs()) {
                    if (jobInfo.getId() == JOB_ID) {
                        scheduler.cancel(JOB_ID);
                    }
                }
            }
        }

但是,我遇到另一个问题:

Caused by java.lang.IllegalArgumentException: Given work is not active: JobWorkItem{id=1 intent=Intent { cmp=com.my.test.package/.notifier.NotifierService } dcount=1}
   at android.app.job.JobParameters.completeWork(JobParameters.java:221)

你们有什么建议吗?

P / s:我无法在设备上重现它,但是在CrashReport工具中获得了数千次。在将新工作排入队列之前取消工作确实解决了100个不同的工作问题,但它又引发了如上所述的另一个错误。

0 个答案:

没有答案