2025-12-28 07:47:12 -06:00
|
|
|
/*
|
2026-01-02 15:51:27 -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/>.
|
|
|
|
|
*/
|
|
|
|
|
import com.android.build.api.dsl.LibraryExtension
|
|
|
|
|
|
2025-10-01 19:26:41 -04:00
|
|
|
plugins {
|
|
|
|
|
alias(libs.plugins.meshtastic.android.library)
|
2026-02-04 16:01:09 -06:00
|
|
|
alias(libs.plugins.meshtastic.android.library.flavors)
|
2025-10-01 19:26:41 -04:00
|
|
|
alias(libs.plugins.meshtastic.android.library.compose)
|
|
|
|
|
alias(libs.plugins.meshtastic.hilt)
|
|
|
|
|
}
|
2025-02-22 13:57:30 -05:00
|
|
|
|
2026-01-15 18:47:45 -06:00
|
|
|
configure<LibraryExtension> {
|
|
|
|
|
namespace = "org.meshtastic.feature.node"
|
|
|
|
|
|
|
|
|
|
defaultConfig { manifestPlaceholders["MAPS_API_KEY"] = "DEBUG_KEY" }
|
2026-02-10 17:02:06 -06:00
|
|
|
|
|
|
|
|
testOptions { unitTests { isIncludeAndroidResources = true } }
|
2026-01-15 18:47:45 -06:00
|
|
|
}
|
2025-02-22 13:57:30 -05:00
|
|
|
|
2025-10-01 19:26:41 -04:00
|
|
|
dependencies {
|
2026-02-20 06:41:52 -06:00
|
|
|
implementation(projects.core.common)
|
2025-10-01 19:26:41 -04:00
|
|
|
implementation(projects.core.data)
|
|
|
|
|
implementation(projects.core.database)
|
|
|
|
|
implementation(projects.core.datastore)
|
2025-11-03 14:43:02 -05:00
|
|
|
implementation(projects.core.di)
|
2025-10-01 19:26:41 -04:00
|
|
|
implementation(projects.core.model)
|
|
|
|
|
implementation(projects.core.proto)
|
|
|
|
|
implementation(projects.core.service)
|
2026-02-22 21:39:50 -06:00
|
|
|
implementation(projects.core.resources)
|
2025-10-01 19:26:41 -04:00
|
|
|
implementation(projects.core.ui)
|
2025-10-07 19:50:53 -05:00
|
|
|
implementation(projects.core.navigation)
|
2025-12-16 16:53:28 +00:00
|
|
|
implementation(projects.feature.map)
|
2025-10-01 19:26:41 -04:00
|
|
|
|
2025-11-03 14:43:02 -05:00
|
|
|
implementation(libs.androidx.activity.compose)
|
2025-10-07 06:23:12 -04:00
|
|
|
implementation(libs.androidx.compose.material.iconsExtended)
|
|
|
|
|
implementation(libs.androidx.compose.material3)
|
|
|
|
|
implementation(libs.androidx.compose.ui.text)
|
|
|
|
|
implementation(libs.androidx.compose.ui.tooling.preview)
|
2025-11-03 14:43:02 -05:00
|
|
|
implementation(libs.androidx.navigation.common)
|
2026-01-24 21:00:23 -06:00
|
|
|
implementation(libs.androidx.lifecycle.viewmodel.compose)
|
2025-12-28 08:30:15 -06:00
|
|
|
implementation(libs.kermit)
|
2025-10-07 19:50:53 -05:00
|
|
|
implementation(libs.coil)
|
|
|
|
|
implementation(libs.markdown.renderer.android)
|
|
|
|
|
implementation(libs.markdown.renderer.m3)
|
|
|
|
|
implementation(libs.markdown.renderer)
|
2026-01-28 18:52:59 -06:00
|
|
|
implementation(libs.vico.compose)
|
|
|
|
|
implementation(libs.vico.compose.m2)
|
|
|
|
|
implementation(libs.vico.compose.m3)
|
2025-10-07 19:50:53 -05:00
|
|
|
|
|
|
|
|
googleImplementation(libs.location.services)
|
|
|
|
|
googleImplementation(libs.maps.compose)
|
2026-01-19 19:52:03 -06:00
|
|
|
testImplementation(libs.junit)
|
|
|
|
|
testImplementation(libs.mockk)
|
|
|
|
|
testImplementation(libs.kotlinx.coroutines.test)
|
|
|
|
|
testImplementation(libs.androidx.compose.ui.test.junit4)
|
|
|
|
|
testImplementation(libs.androidx.test.ext.junit)
|
|
|
|
|
testImplementation(libs.robolectric)
|
2026-02-10 17:02:06 -06:00
|
|
|
debugImplementation(libs.androidx.compose.ui.test.manifest)
|
2025-10-01 19:26:41 -04:00
|
|
|
}
|