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-17 06:46:43 -04:00
|
|
|
|
|
|
|
|
plugins {
|
2026-03-09 20:19:46 -05:00
|
|
|
alias(libs.plugins.meshtastic.kmp.library)
|
2026-03-12 16:14:49 -05:00
|
|
|
alias(libs.plugins.meshtastic.kmp.library.compose)
|
2025-09-17 06:46:43 -04:00
|
|
|
alias(libs.plugins.meshtastic.kotlinx.serialization)
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-09 20:19:46 -05:00
|
|
|
kotlin {
|
|
|
|
|
android { namespace = "org.meshtastic.core.navigation" }
|
2025-09-17 06:46:43 -04:00
|
|
|
|
2026-03-10 12:29:47 -05:00
|
|
|
sourceSets {
|
|
|
|
|
commonMain.dependencies {
|
2026-03-24 19:21:24 -05:00
|
|
|
implementation(projects.core.common)
|
2026-03-12 16:14:49 -05:00
|
|
|
implementation(projects.core.resources)
|
2026-03-10 12:29:47 -05:00
|
|
|
implementation(libs.kotlinx.serialization.core)
|
2026-03-23 11:48:10 -05:00
|
|
|
implementation(libs.jetbrains.navigation3.ui)
|
2026-03-24 19:21:24 -05:00
|
|
|
implementation(libs.kermit)
|
2026-03-10 12:29:47 -05:00
|
|
|
}
|
|
|
|
|
}
|
2026-03-09 20:19:46 -05:00
|
|
|
}
|