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/>.
|
|
|
|
|
*/
|
|
|
|
|
import com.android.build.api.dsl.LibraryExtension
|
|
|
|
|
|
2025-09-17 06:46:43 -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-09-23 05:51:03 -04:00
|
|
|
alias(libs.plugins.meshtastic.hilt)
|
2025-09-17 06:46:43 -04:00
|
|
|
}
|
|
|
|
|
|
2025-12-28 07:47:12 -06:00
|
|
|
configure<LibraryExtension> { namespace = "org.meshtastic.core.prefs" }
|
2025-09-17 06:46:43 -04:00
|
|
|
|
2026-01-24 08:41:17 -08:00
|
|
|
dependencies {
|
|
|
|
|
googleImplementation(libs.maps.compose)
|
|
|
|
|
|
|
|
|
|
testImplementation(libs.junit)
|
|
|
|
|
testImplementation(libs.mockk)
|
|
|
|
|
}
|