Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The R89SDK may track the advertisement session when the application is in the background. To do so the SDK It internally uses the BgTaskScheduler and BGAppRefreshTask from the iOS framework. Before enabling the background mode add the “Background Modes“ Background Modescapability to your project.

...

Next, in the Info.plist, add the following task identifier com.refinery89.background under the BGTaskSchedulerPermittedIdentifiers key, so it looks like thisas shown below

Code Block
languagexml
<dict>
    ...
	<key>BGTaskSchedulerPermittedIdentifiers</key>
	<array>
		<string>com.refinery89.background</string>
	</array>
	...
</dict>

...