2025-12-28 07:47:12 -06:00
|
|
|
/*
|
2026-01-09 09:40:00 -06:00
|
|
|
* Copyright (c) 2025-2026 Meshtastic LLC
|
2025-12-28 07:47:12 -06:00
|
|
|
*
|
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
2025-09-22 23:49:28 -04:00
|
|
|
plugins {
|
2026-03-05 20:37:35 -06:00
|
|
|
alias(libs.plugins.meshtastic.kmp.library)
|
2025-09-22 23:49:28 -04:00
|
|
|
alias(libs.plugins.meshtastic.kotlinx.serialization)
|
2026-03-05 20:37:35 -06:00
|
|
|
alias(libs.plugins.kotlin.parcelize)
|
2026-03-09 20:19:46 -05:00
|
|
|
id("meshtastic.koin")
|
2025-09-22 23:49:28 -04:00
|
|
|
}
|
2025-07-22 15:28:06 -05:00
|
|
|
|
2026-03-05 20:37:35 -06:00
|
|
|
kotlin {
|
2026-03-12 16:14:49 -05:00
|
|
|
jvm()
|
|
|
|
|
|
2026-03-05 20:37:35 -06:00
|
|
|
android { namespace = "org.meshtastic.core.datastore" }
|
2025-07-22 15:28:06 -05:00
|
|
|
|
2026-03-05 20:37:35 -06:00
|
|
|
sourceSets {
|
|
|
|
|
commonMain.dependencies {
|
2026-03-18 18:33:37 -05:00
|
|
|
implementation(projects.core.common)
|
|
|
|
|
implementation(projects.core.model)
|
2026-03-05 20:37:35 -06:00
|
|
|
implementation(projects.core.proto)
|
2026-03-06 16:06:50 -06:00
|
|
|
api(libs.androidx.datastore)
|
|
|
|
|
api(libs.androidx.datastore.preferences)
|
2026-03-05 20:37:35 -06:00
|
|
|
implementation(libs.kotlinx.serialization.json)
|
|
|
|
|
implementation(libs.kermit)
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-09-22 23:49:28 -04:00
|
|
|
}
|