TheArchitect123 / KmpEssentials

KmpEssentials is a library that contains apis (40+ Modules) to accelerate your development. Everything from managing the Battery, File System, getting Package information, or taking Photos. Supports iOS, Android & AppleWatch
MIT License
169 stars 2 forks source link

[Docs] Missing permissions from iOS setup on Geolocation #6

Closed Tiagochicoo closed 1 month ago

Tiagochicoo commented 1 month ago

Hey!

For the Geolocation & Geofencing setup on iOS you're only providing the NSLocationWhenInUseUsageDescription key, but you need to provide two:

<key>NSLocationWhenInUseUsageDescription</key>
<string>Your location is needed to show nearby events.</string>

<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
<string>Your location is needed to provide real-time updates even when the app is not active.</string>

https://thearchitect123.github.io/ArtifactsDocProduction/develop/kotlin/multiplatform/kmpessentials/modules/geolocation

TheArchitect123 commented 1 month ago

Hi, Thanks for finding this. I forgot to add the second key required for foreground services.

Refresh the page, and the key should be there.