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
17 changes: 9 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,26 +9,27 @@ Document Scanner for Compose Multiplatform (Android/iOS) using [VNDocumentCamera

Supported Compose versions:

| EasyDocumentScan Version | Compose version |
|--------------------------|-----------------|
| 0.1.0+ | 1.7 |
| 0.2.0+ | 1.8 |
| 0.3.0+ | 1.9 |
| 0.4.0+ | 1.10 |
| EasyDocumentScan version | Compose version | Kotlin version |
|--------------------------|-----------------|----------------|
| 0.1.0+ | 1.7 | 2.0 |
| 0.2.0+ | 1.8 | 2.1 |
| 0.3.0+ | 1.9 | 2.2 |
| 0.4.0+ | 1.10 | 2.2 |
| 0.5.0+ | 1.11 | 2.4 |

# Dependency
> [!NOTE]
> 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.

Add the dependency to your commonMain sourceSet (KMP) / Android dependencies (android only):
```kotlin
implementation("io.github.kalinjul.easydocumentscan:documentscanner-compose:0.4.1")
implementation("io.github.kalinjul.easydocumentscan:documentscanner-compose:0.5.0")
```

Or, for your libs.versions.toml:
```toml
[versions]
easydocumentscanner = "0.4.1"
easydocumentscanner = "0.5.0"
[libraries]
easydocumentscanner-compose = { module = "io.github.kalinjul.easydocumentscan:documentscanner-compose", version.ref = "easydocumentscanner" }
easydocumentscanner-core = { module = "io.github.kalinjul.easydocumentscan:documentscanner-core", version.ref = "easydocumentscanner" }
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jvmTarget = "17"
agp = "9.0.1"

#https://github.com/JetBrains/compose-multiplatform
compose-multiplatform = "1.10.1"
compose-multiplatform = "1.11.1"
material3 = "1.10.0-alpha05"
#https://kotlinlang.org/docs/multiplatform-compatibility-guide.html
kotlin = "2.2.21"
kotlin = "2.4.0"
# https://github.com/google/ksp
ksp = "2.3.4"

Expand Down
Loading