Skip to content

Commit

Permalink
bump to v1.6.1.1 after removing qr-code
Browse files Browse the repository at this point in the history
  • Loading branch information
avan1235 committed Mar 27, 2024
1 parent 5337237 commit 20611ba
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ are self-contained and allow to deploy compose applications to Android, iOS and
Select the extension that you find useful in your project and put

```kotlin
implementation("in.procyk.compose:extension-name:1.6.1.0")
implementation("in.procyk.compose:extension-name:1.6.1.1")
```

into your `commonMain` source set's dependencies block, where `extension-name` should be replaced with the
Expand All @@ -33,12 +33,12 @@ See some example in [examples](./examples) project, where every extension is add

- `calendar` - calendar compose implementation migrated to Kotlin Multiplatform from [ComposeCalendar](https://github.com/boguszpawlowski/ComposeCalendar). See sample usage [here](./examples/src/commonMain/kotlin/in/procyk/compose/examples/Calendars.kt).
```kotlin
implementation("in.procyk.compose:calendar:1.6.1.0")
implementation("in.procyk.compose:calendar:1.6.1.1")
```

- `camera-qr` - detecting QR codes camera view. See sample usage [here](./examples/src/commonMain/kotlin/in/procyk/compose/examples/CameraQR.kt).
```kotlin
implementation("in.procyk.compose:camera-qr:1.6.1.0")
implementation("in.procyk.compose:camera-qr:1.6.1.1")
```
- for Android Application add to [AndroidManifest.xml](./examples/src/androidMain/AndroidManifest.xml)
```xml
Expand Down Expand Up @@ -68,10 +68,10 @@ See some example in [examples](./examples) project, where every extension is add

- `camera-permission` - ask for camera permission. See sample usage [here](./examples/src/commonMain/kotlin/in/procyk/compose/examples/CameraPermission.kt).
```kotlin
implementation("in.procyk.compose:camera-permission:1.6.1.0")
implementation("in.procyk.compose:camera-permission:1.6.1.1")
```

- `util` - handy functions to work with compose. Explore the [directory](./util/src/commonMain/kotlin/in/procyk/compose/util) to see what cool features are available.
```kotlin
implementation("in.procyk.compose:util:1.6.1.0")
implementation("in.procyk.compose:util:1.6.1.1")
```
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ barcodeScanning = "17.2.0"
cameraX = "1.3.0"
compose = "1.6.1"
# @keep
compose-extensions = "1.6.1.0"
compose-extensions = "1.6.1.1"
gradle-versions = "0.51.0"
# @pin
kotlin = "1.9.23"
Expand Down

0 comments on commit 20611ba

Please sign in to comment.