我已经使用 Firebase 作业调度程序实现了作业调度。其中在文档中给出了一个IntentFilter
具有特定操作的Action
应添加到作业服务中,如下所示
<intent-filter>
<action android:name="com.firebase.jobdispatcher.ACTION_EXECUTE" />
</intent-filter>
IntentFilter
即使没有它,在作业调度工作正常时添加上述内容有什么用
我已经使用 Firebase 作业调度程序实现了作业调度。其中在文档中给出了一个IntentFilter
具有特定操作的Action
应添加到作业服务中,如下所示
<intent-filter>
<action android:name="com.firebase.jobdispatcher.ACTION_EXECUTE" />
</intent-filter>
IntentFilter
即使没有它,在作业调度工作正常时添加上述内容有什么用