I have implemented job scheduling using Firebase job dispatcher. In which it was given in the doc that an IntentFilter
with a specific action Action
should be added to the job service as below
<intent-filter>
<action android:name="com.firebase.jobdispatcher.ACTION_EXECUTE" />
</intent-filter>
What is the use of the adding the above IntentFilter
while the jobscheduling is working fine even without that