Skip to content

Commit 5039b65

Browse files
committed
updated
1 parent 254c562 commit 5039b65

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Kotlin Mobile Multiplatform Accelerometer Sensors Library
22

3-
This library allows you to get a `Flow` from your Android or iOS (only on _main thread_) data from accelerometers.
3+
This library allows you to get a `Flow` from your Android or iOS (only on _main thread_) data from
4+
accelerometers.
45

56
Application exposes a custom model `SensorData` that exposes:
67

@@ -29,8 +30,12 @@ data class AccelerometerData(val x: Double, val y: Double, val z: Double)
2930

3031
## Installing
3132

32-
33-
3433
## Usage
3534

3635
For usage you can refer to the two examples you can find in `iOSApp` and `AndroidApp`.
36+
37+
## Local release
38+
39+
```bash
40+
./gradlew publishMavenLocal
41+
```

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
}
77
dependencies {
88
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.30")
9-
classpath("com.android.tools.build:gradle:7.1.0-alpha13")
9+
classpath("com.android.tools.build:gradle:7.2.0-alpha04")
1010
}
1111
}
1212

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Sun Sep 19 10:38:49 CEST 2021
22
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-rc-1-bin.zip
44
distributionPath=wrapper/dists
55
zipStorePath=wrapper/dists
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)