Skip to content

Commit 993e469

Browse files
authored
Merge pull request #13 from kalinjul/update-kotlin
update kotlin + compose
2 parents a8ef9f2 + 9852d7a commit 993e469

2 files changed

Lines changed: 11 additions & 10 deletions

File tree

README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,26 +9,27 @@ Document Scanner for Compose Multiplatform (Android/iOS) using [VNDocumentCamera
99

1010
Supported Compose versions:
1111

12-
| EasyDocumentScan Version | Compose version |
13-
|--------------------------|-----------------|
14-
| 0.1.0+ | 1.7 |
15-
| 0.2.0+ | 1.8 |
16-
| 0.3.0+ | 1.9 |
17-
| 0.4.0+ | 1.10 |
12+
| EasyDocumentScan version | Compose version | Kotlin version |
13+
|--------------------------|-----------------|----------------|
14+
| 0.1.0+ | 1.7 | 2.0 |
15+
| 0.2.0+ | 1.8 | 2.1 |
16+
| 0.3.0+ | 1.9 | 2.2 |
17+
| 0.4.0+ | 1.10 | 2.2 |
18+
| 0.5.0+ | 1.11 | 2.4 |
1819

1920
# Dependency
2021
> [!NOTE]
2122
> Starting with 0.3.2, artifact id changed from "documentscanner" to "documentscanner-compose" and a new "documentscanner-core" artifact was introduced that contains the KmpFile abstraction as well as some Helper functions.
2223
2324
Add the dependency to your commonMain sourceSet (KMP) / Android dependencies (android only):
2425
```kotlin
25-
implementation("io.github.kalinjul.easydocumentscan:documentscanner-compose:0.4.1")
26+
implementation("io.github.kalinjul.easydocumentscan:documentscanner-compose:0.5.0")
2627
```
2728

2829
Or, for your libs.versions.toml:
2930
```toml
3031
[versions]
31-
easydocumentscanner = "0.4.1"
32+
easydocumentscanner = "0.5.0"
3233
[libraries]
3334
easydocumentscanner-compose = { module = "io.github.kalinjul.easydocumentscan:documentscanner-compose", version.ref = "easydocumentscanner" }
3435
easydocumentscanner-core = { module = "io.github.kalinjul.easydocumentscan:documentscanner-core", version.ref = "easydocumentscanner" }

gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ jvmTarget = "17"
88
agp = "9.0.1"
99

1010
#https://github.com/JetBrains/compose-multiplatform
11-
compose-multiplatform = "1.10.1"
11+
compose-multiplatform = "1.11.1"
1212
material3 = "1.10.0-alpha05"
1313
#https://kotlinlang.org/docs/multiplatform-compatibility-guide.html
14-
kotlin = "2.2.21"
14+
kotlin = "2.4.0"
1515
# https://github.com/google/ksp
1616
ksp = "2.3.4"
1717

0 commit comments

Comments
 (0)