moko-geo
0.8.0indexedEnables geolocation tracking in shared code, supporting geolocation tracking and integration with Compose Multiplatform. Provides straightforward setup and usage for both Android and iOS platforms.
Enables geolocation tracking in shared code, supporting geolocation tracking and integration with Compose Multiplatform. Provides straightforward setup and usage for both Android and iOS platforms.
Surfaced from shared tags and platforms — no rankings paid for.
This is a Kotlin Multiplatform library that provides geolocation to common code.
root build.gradle
allprojects {
repositories {
mavenCentral()
}
}
project build.gradle
dependencies {
commonMainApi("dev.icerock.moko:geo:0.8.0")
// Compose Multiplatform
commonMainApi("dev.icerock.moko:geo-compose:0.8.0")
}
in common code:
class TrackerViewModel(
val locationTracker: LocationTracker
) : ViewModel() {
init {
viewModelScope.launch {
locationTracker.getLocationsFlow()
.distinctUntilChanged()
.collect { println("new location: $it") }
}
}
fun onStartPressed() {
viewModelScope.launch { locationTracker.startTracking() }
}
fun onStopPressed() {
locationTracker.stopTracking()
}
}
In Android:
// create ViewModel
val locationTracker = LocationTracker(
permissionsController = PermissionsController(applicationContext = applicationContext)
)
val viewModel = TrackerViewModel(locationTracker)
// bind tracker to lifecycle
viewModel.locationTracker.bind(lifecycle, this, supportFragmentManager)
In Android jetpack compose:
// create ViewModel
val locationTracker = LocationTracker(
permissionsController = PermissionsController(applicationContext = applicationContext)
)
val viewModel = TrackerViewModel(locationTracker)
// bind tracker to composable
BindLocationTrackerEffect(locationTracker = tracker)
In iOS:
let viewModel = TrackerViewModel(
locationTracker: LocationTracker(
permissionsController: PermissionsController(),
accuracy: kCLLocationAccuracyBest
)
)
Please see more examples in the sample directory.
geo library;All development (both new features and bug fixes) is performed in the develop branch. This way master always contains the sources of the most recently released version. Please send PRs with bug fixes to the develop branch. Documentation fixes in the markdown files are an exception to this rule. They are updated directly in master.
The develop branch is pushed to master on release.
For more details on contributing please see the contributing guide.
Before send PR please run checks on local:
./local-check.sh in root of repository./local-check.sh in sample directoryCopyright 2019 IceRock MAG Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance the License.
You may obtain a copy of the License at
http:
Unless applicable law agreed to writing, software
distributed under the License distributed an BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express implied.
See the License the specific language governing permissions
limitations under the License.