moko-geo icon indicating copy to clipboard operation
moko-geo copied to clipboard

Geolocation access for mobile (android & ios) Kotlin Multiplatform development

Results 15 moko-geo issues
Sort by recently updated
recently updated
newest added

`moko-geo` is crashing when used with `moko-permissions` 0.18.0 due to changes introduced in https://github.com/icerockdev/moko-permissions/pull/114 ### Crash ``` java.lang.NoSuchMethodError: No interface method bind(Landroidx/lifecycle/Lifecycle;Landroidx/fragment/app/FragmentManager;)V in class Ldev/icerock/moko/permissions/PermissionsController; or its super classes (declaration...

Hi, I tried to do the same as construction in readme, and it shows the rationale dialog. My app already had Location permission but every time I tried to run...

Currently we are using your library. In our app we need functionality to get altitude, accuracy, angle screenModelScope.launch { locationTracker?.getLocationsFlow()?.distinctUntilChanged()?.collect { AppLogger.log("new location: $it.") state.value.latitude = it.latitude state.value.longitude = it.longitude...

Hi guys, firstly, thanks for this library, it's very helpful for me! However, one thing that was bothering me is that you always ask for `Permission.LOCATION` and there is no...

Since We are using this library in our production and location for our app functionality is very sensitive and We don't want to allow fake mock locations. I have added...

Current `LocationTracker` implementation is nailed to the `FusedLocationProviderClient`. Therefore `moko-geo` is unable to work properly on android devices without Google Services installed. Google Services are unavailable/not installed/not used on lots...

enhancement

This pull request is related to issue https://github.com/icerockdev/moko-geo/issues/14 It makes use of the relatively new contracts API on Android to request a system dialog for enabling GPS after the permission...

Need func or property to get user location one time

enhancement

I tested this library on Android. It works perfectly fine, if GPS is enabled. If not, nothing happens. [The official docs](https://developer.android.com/training/location/change-location-settings#get-settings) state that an app should check the settings and...

enhancement