mirror of
https://github.com/openMF/mifos-mobile.git
synced 2026-02-06 11:26:51 +00:00
67 lines
1.8 KiB
Plaintext
67 lines
1.8 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-mobile/blob/master/LICENSE.md
|
|
*/
|
|
|
|
/*
|
|
* 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-mobile/blob/master/LICENSE.md
|
|
*/
|
|
plugins {
|
|
alias(libs.plugins.kmp.library.convention)
|
|
alias(libs.plugins.kotlin.serialization)
|
|
alias(libs.plugins.mifos.kmp.room)
|
|
}
|
|
|
|
android {
|
|
namespace = "org.mifos.mobile.core.database"
|
|
compileSdk = 35
|
|
|
|
defaultConfig {
|
|
consumerProguardFiles("consumer-rules.pro")
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_21
|
|
targetCompatibility = JavaVersion.VERSION_21
|
|
}
|
|
}
|
|
|
|
kotlin {
|
|
|
|
sourceSets {
|
|
val desktopMain by getting
|
|
|
|
androidMain.dependencies {
|
|
implementation(libs.koin.android)
|
|
implementation(libs.androidx.room.runtime)
|
|
implementation(libs.androidx.sqlite.bundled)
|
|
}
|
|
|
|
nativeMain.dependencies {
|
|
implementation(libs.androidx.room.runtime)
|
|
implementation(libs.androidx.sqlite.bundled)
|
|
}
|
|
|
|
desktopMain.dependencies {
|
|
implementation(libs.androidx.room.runtime)
|
|
implementation(libs.androidx.sqlite.bundled)
|
|
}
|
|
|
|
commonMain.dependencies {
|
|
implementation(libs.kotlinx.coroutines.core)
|
|
implementation(libs.kotlinx.serialization.json)
|
|
api(projects.core.common)
|
|
}
|
|
}
|
|
} |