mobile-wallet/core/analytics/build.gradle.kts

30 lines
817 B
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.kmp.library.convention)
alias(libs.plugins.jetbrainsCompose)
alias(libs.plugins.compose.compiler)
}
android {
namespace = "org.mifospay.core.analytics"
}
kotlin {
sourceSets {
commonMain.dependencies {
implementation(compose.runtime)
}
androidMain.dependencies {
implementation(project.dependencies.platform(libs.firebase.bom))
implementation(libs.firebase.analytics)
}
}
}