Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,18 @@ Supported Compose version:
| 1.7 | 0.2 - 0.3 |
| 1.8 | 0.4.0 |
| 1.9 | 0.5.0 - 0.6.x |
| 1.10 | 0.7.x |

# Dependency
Add the dependency to your commonMain sourceSet (KMP) / Android dependencies (android only):
```kotlin
implementation("io.github.kalinjul.easyqrscan:scanner:0.6.0")
implementation("io.github.kalinjul.easyqrscan:scanner:0.7.0")
```

Or, for your libs.versions.toml:
```toml
[versions]
easyqrscan = "0.6.0"
easyqrscan = "0.7.0"
[libraries]
easyqrscan = { module = "io.github.kalinjul.easyqrscan:scanner", version.ref = "easyqrscan" }
```
Expand Down
12 changes: 6 additions & 6 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,28 +5,28 @@ minSdk = "23"

jvmTarget = "17"
# https://developer.android.com/build/releases/gradle-plugin#compatibility
agp = "8.11.1"
agp = "8.11.2"

#https://github.com/JetBrains/compose-multiplatform
compose-multiplatform = "1.9.3"
compose-multiplatform = "1.10.1"
#https://kotlinlang.org/docs/multiplatform-compatibility-guide.html
kotlin = "2.2.21"
kotlin = "2.3.10"
# https://github.com/google/ksp
ksp = "2.3.0"
ksp = "2.3.4"

#https://mvnrepository.com/artifact/org.jetbrains.compose.compiler/compiler
#composeCompiler = "1.5.8.1"

# https://developer.android.com/jetpack/androidx/releases/activity
androidxActivity = "1.11.0"
androidxActivity = "1.12.4"
# https://developer.android.com/jetpack/androidx/releases/appcompat
androidxAppCompat = "1.7.1"
coreKtx = "1.17.0"

dokka = "2.0.0"
nexus-publish-plugin = "2.0.0"
accompanist = "0.37.3"
androidxCamera = "1.5.1"
androidxCamera = "1.5.3"
mlkit = "17.3.0"

[libraries]
Expand Down