Skip to content

Commit

Permalink
update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
avan1235 committed May 21, 2024
1 parent fad7c39 commit 7205ec4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
[![Platforms](https://img.shields.io/badge/desktop-Windows%20%7C%20macOS%20%7C%20Linux-blue)](https://github.com/avan1235/compose-extensions/releases)

[![Kotlin](https://img.shields.io/badge/Kotlin-2.0.0-RC2-green.svg?logo=kotlin)](https://github.com/JetBrains/kotlin)
[![Compose](https://img.shields.io/badge/Compose%20Multiplatform-1.6.10-rc03-green.svg?logo=jetpack-compose)](https://github.com/JetBrains/compose-multiplatform)
[![Compose](https://img.shields.io/badge/Compose%20Multiplatform-1.6.10-green.svg?logo=jetpack-compose)](https://github.com/JetBrains/compose-multiplatform)
[![Maven Central](https://img.shields.io/maven-central/v/in.procyk.compose/camera-qr?label=Maven%20Central&color=green)](https://central.sonatype.com/namespace/in.procyk.compose)
[![Latest Release](https://img.shields.io/github/v/release/avan1235/compose-extensions?label=Release&color=green)](https://github.com/avan1235/compose-extensions/releases)
[![Build](https://img.shields.io/github/actions/workflow/status/avan1235/compose-extensions/release.yml?label=Build&color=green)](https://github.com/avan1235/compose-extensions/actions/workflows/release.yml)
Expand All @@ -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.10-rc03.0")
implementation("in.procyk.compose:extension-name:1.6.10.0")
```

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.10-rc03.0")
implementation("in.procyk.compose:calendar:1.6.10.0")
```

- `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.10-rc03.0")
implementation("in.procyk.compose:camera-qr:1.6.10.0")
```
- for Android Application add to [AndroidManifest.xml](./examples/src/androidMain/AndroidManifest.xml)
```xml
Expand Down Expand Up @@ -69,10 +69,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.10-rc03.0")
implementation("in.procyk.compose:camera-permission:1.6.10.0")
```

- `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.10-rc03.0")
implementation("in.procyk.compose:util:1.6.10.0")
```
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ android-minSdk = "26"
android-targetSdk = "33"
barcodeScanning = "17.2.0"
cameraX = "1.3.0"
compose = "1.6.10-rc03"
compose = "1.6.10"
# @keep
compose-extensions = "1.6.10-rc03.0"
compose-extensions = "1.6.10.0"
gradle-versions = "0.51.0"
# @pin
kotlin = "2.0.0-RC2"
Expand Down

0 comments on commit 7205ec4

Please sign in to comment.