What should be the values of BGTaskSchedulerPermittedIdentifiers ? #877
-
I have implemented one job that has to run when app goes into the background. Do I have to put same values of BGTaskSchedulerPermittedIdentifiers as it is in the Sample's Info.plist ? Also do I have to specify those values anywhere else ? Also I have one task which starts when app is in the foreground and it has to be continued if app goes in to the background, this is how I have implemented it |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
Those values only need to be declared in the info.plist. Yes - that will work and will continue to run for roughly 30 seconds if your app backgrounds. Jobs (implementing IJob) are recommended |
Beta Was this translation helpful? Give feedback.
Those values only need to be declared in the info.plist.
Yes - that will work and will continue to run for roughly 30 seconds if your app backgrounds. Jobs (implementing IJob) are recommended