Loading apex/jobscheduler/service/java/com/android/server/job/JobServiceContext.java +3 −1 Original line number Diff line number Diff line Loading @@ -303,7 +303,9 @@ public final class JobServiceContext implements ServiceConnection { getStartActionId(job), String.valueOf(job.getJobId())); mVerb = VERB_BINDING; scheduleOpTimeOutLocked(); final Intent intent = new Intent().setComponent(job.getServiceComponent()); // Use FLAG_FROM_BACKGROUND to avoid resetting the bad-app tracking. final Intent intent = new Intent().setComponent(job.getServiceComponent()) .setFlags(Intent.FLAG_FROM_BACKGROUND); boolean binding = false; try { final int bindFlags; Loading Loading
apex/jobscheduler/service/java/com/android/server/job/JobServiceContext.java +3 −1 Original line number Diff line number Diff line Loading @@ -303,7 +303,9 @@ public final class JobServiceContext implements ServiceConnection { getStartActionId(job), String.valueOf(job.getJobId())); mVerb = VERB_BINDING; scheduleOpTimeOutLocked(); final Intent intent = new Intent().setComponent(job.getServiceComponent()); // Use FLAG_FROM_BACKGROUND to avoid resetting the bad-app tracking. final Intent intent = new Intent().setComponent(job.getServiceComponent()) .setFlags(Intent.FLAG_FROM_BACKGROUND); boolean binding = false; try { final int bindFlags; Loading