mobile-wallet/feature/qr/build.gradle.kts

47 lines
1.3 KiB
Plaintext

/*
* Copyright 2024 Mifos Initiative
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*
* See https://github.com/openMF/mobile-wallet/blob/master/LICENSE.md
*/
plugins {
alias(libs.plugins.cmp.feature.convention)
}
android {
namespace = "org.mifospay.feature.qr"
defaultConfig {
consumerProguardFiles("consumer-rules.pro")
}
}
kotlin {
sourceSets {
commonMain.dependencies {
implementation(compose.ui)
implementation(compose.foundation)
implementation(compose.material3)
implementation(compose.components.resources)
implementation(compose.components.uiToolingPreview)
implementation(libs.coil.kt.compose)
}
androidMain.dependencies {
implementation(libs.androidx.camera.view)
implementation(libs.androidx.camera.camera2)
implementation(libs.androidx.camera.lifecycle)
implementation(libs.accompanist.permissions)
implementation(libs.mlkit.barcode.scanning)
implementation(libs.guava)
}
nativeMain.dependencies {
implementation(libs.moko.permission.compose)
}
}
}