Versions Compared

Key

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

...

Geolocation permission configuration

The R89SDK will ask for the user’s location for setting it as a user-oriented First-Party Data. Add the NSLocationWhenInUseUsageDescription to the Info.plist with an appropriate message.

Code Block
languagexml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	...
	<key>NSLocationWhenInUseUsageDescription</key>
	<string>This app uses your location to display  advertisement according to geolocation</string>
	...
</dict>
</plist>
Info

The location permission will not be requested if the NSLocationWhenInUseUsageDescription is not available in the Info.plist.