mobile-wallet/core/analytics/build.gradle.kts
2024-09-22 15:32:50 +05:30

37 lines
1.0 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
*/
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
/*
* 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.mifospay.android.library)
alias(libs.plugins.mifospay.android.library.compose)
}
android {
namespace = "org.mifospay.core.analytics"
}
dependencies {
implementation(libs.androidx.compose.runtime)
implementation(platform(libs.firebase.bom))
implementation(libs.firebase.analytics)
}