You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a Kotlin Multiplatform library that provides geolocation to common code.
@@ -19,14 +19,16 @@ This is a Kotlin Multiplatform library that provides geolocation to common code.
19
19
-**Geolocation tracking** - track user geolocation from common code;
20
20
21
21
## Requirements
22
-
- Gradle version 5.4.1+
22
+
- Gradle version 5.6.4+
23
23
- Android API 16+
24
24
- iOS version 9.0+
25
25
26
26
## Versions
27
27
- kotlin 1.3.61
28
28
- 0.1.0
29
29
- 0.1.1
30
+
- kotlin 1.3.70
31
+
- 0.2.0
30
32
31
33
## Installation
32
34
root build.gradle
@@ -41,15 +43,10 @@ allprojects {
41
43
project build.gradle
42
44
```groovy
43
45
dependencies {
44
-
commonMainApi("dev.icerock.moko:geo:0.1.1")
46
+
commonMainApi("dev.icerock.moko:geo:0.2.0")
45
47
}
46
48
```
47
49
48
-
settings.gradle
49
-
```groovy
50
-
enableFeaturePreview("GRADLE_METADATA")
51
-
```
52
-
53
50
## Usage
54
51
in common code:
55
52
```kotlin
@@ -103,7 +100,7 @@ Please see more examples in the [sample directory](sample).
103
100
## Set Up Locally
104
101
- The [geo directory](geo) contains the `geo` library;
105
102
- In [sample directory](sample) contains sample apps for Android and iOS; plus the mpp-library connected to the apps;
106
-
- For local testing use the `:geo:publishToMavenLocal` gradle task - so that sample apps use the locally published version.
103
+
- For local testing use the `./publishToMavenLocal.sh` script - so that sample apps use the locally published version.
107
104
108
105
## Contributing
109
106
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`.
0 commit comments