Skip to content

Commit

Permalink
add qrcode-kotlin library [FoKE-Developers#76]
Browse files Browse the repository at this point in the history
- QR Code 생성 라이브러리 의존성 추가
- https://github.com/g0dkar/qrcode-kotlin
  • Loading branch information
DokySp committed Oct 10, 2024
1 parent 836acd0 commit 05e72a2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
3 changes: 3 additions & 0 deletions external/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ dependencies {
implementation(libs.retrofit.gson)
implementation(libs.google.gson)

// qrcode-kotlin
implementation(libs.qrcode.kotlin)

// module dependency
implementation(project(":domain"))

Expand Down
8 changes: 7 additions & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@ android-mjpeg-view = "1.1.3"
material-icons-extended = "1.7.2"
ui-graphics-android = "1.7.3"

# qrcode-kotlin --
qrcode-kotlin = "4.1.1"

# test -----------
junit = "4.13.2"
junit-version = "1.2.1"
Expand Down Expand Up @@ -118,12 +121,15 @@ datastore_preferences = { group = "androidx.datastore", name = "datastore-prefer
datastore_preferences_core = { group = "androidx.datastore", name = "datastore-preferences-core", version.ref = "datastore" }
protobuf_javalite = { group = "com.google.protobuf", name = "protobuf-javalite", version.ref = "protobuf" }

# compose UI
# compose UI -----
androidx-constraintlayout-compose = { group = "androidx.constraintlayout", name = "constraintlayout-compose", version.ref = "constraint-layout-compose" }
androidx-material-icons-extended = { group = "androidx.compose.material", name = "material-icons-extended", version.ref = "material-icons-extended" }
android-mjpeg-view = { group = "com.perthcpe23.dev", name = "android-mjpeg-view", version.ref = "android-mjpeg-view" }
androidx-ui-graphics-android = { group = "androidx.compose.ui", name = "ui-graphics-android", version.ref = "ui-graphics-android" }

# qrcode-kotlin --
qrcode-kotlin = { group = "io.github.g0dkar", name = "qrcode-kotlin", version.ref = "qrcode-kotlin" }

# test -----------
junit = { group = "junit", name = "junit", version.ref = "junit" }
androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junit-version" }
Expand Down

0 comments on commit 05e72a2

Please sign in to comment.