JobScheduler-NETWORK_TYPE_NONE提供IllegalArgumentException

时间:2018-12-03 15:16:15

标签: android illegalargumentexception android-jobscheduler jobservice

我正在使用以下代码安排工作服务。

JobScheduler jobScheduler = (JobScheduler) mContext.getApplicationContext().getSystemService(Context.JOB_SCHEDULER_SERVICE);
                    if (jobScheduler != null) {
                        try {
                            jobScheduler.schedule(AppJobService.createJobInfo(mContext.getApplicationContext(), account));
                        } catch (IllegalArgumentException e) {
                            CrashLogger.logException(e);
                        }
                    }

public static JobInfo createJobInfo(@NonNull Context context, Account account) {
        Gson g = new Gson();
        String json = g.toJson(account);
        PersistableBundle bundle = new PersistableBundle();
        bundle.putString("Account", json);
        JobInfo.Builder builder = new JobInfo.Builder(3, new ComponentName(context, AppJobService.class))
                .setExtras(bundle)
                .setRequiredNetworkType(NETWORK_TYPE_NONE)
                .setRequiresDeviceIdle(false).setPersisted(false);


        return builder.build();
    }

但是要低于例外

  

2018-12-03 17:51:22.360 5032-5557 /? W / System.err:   java.lang.IllegalArgumentException:您正在尝试使用   没有限制,这是不允许的。

但是当我将setRequiredNetworkType(NETWORK_TYPE_NONE)更改为setRequiredNetworkType(NETWORK_TYPE_ANY)时,它可以正常工作。但是我希望我的工作服务即使在没有网络连接的情况下也能运行。为什么我的NETWORK_TYPE_NONE异常?

1 个答案:

答案 0 :(得分:1)

您必须具有某种约束,否则它将始终抛出IllegalArgumentException,放置任何约束或仅使用AlarmManager或WorkManager 查看代码段,这是来自Android源代码

        public JobInfo build() {
        // Allow jobs with no constraints - What am I, a database?
        if (!mHasEarlyConstraint && !mHasLateConstraint && mConstraintFlags == 0 &&
                mNetworkRequest == null &&
                mTriggerContentUris == null) {
            throw new IllegalArgumentException("You're trying to build a job with no " +
                    "constraints, this is not allowed.");
        }

我遇到了同样的问题,我只是使用AlarmManager