2025-07-22 15:28:06 -05:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2025 Meshtastic LLC
|
|
|
|
|
*
|
|
|
|
|
* 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 {
|
|
|
|
|
alias(libs.plugins.meshtastic.android.library)
|
2025-09-24 10:20:35 -04:00
|
|
|
alias(libs.plugins.meshtastic.hilt)
|
|
|
|
|
alias(libs.plugins.meshtastic.kotlinx.serialization)
|
2025-09-22 23:49:28 -04:00
|
|
|
alias(libs.plugins.kover)
|
|
|
|
|
}
|
2025-07-22 15:28:06 -05:00
|
|
|
|
2025-09-22 23:49:28 -04:00
|
|
|
android { namespace = "org.meshtastic.core.data" }
|
2025-07-22 15:28:06 -05:00
|
|
|
|
2025-09-24 10:20:35 -04:00
|
|
|
dependencies {
|
2025-10-06 13:20:03 -04:00
|
|
|
implementation(projects.core.analytics)
|
2025-09-26 17:45:11 -04:00
|
|
|
implementation(projects.core.database)
|
|
|
|
|
implementation(projects.core.datastore)
|
2025-09-24 10:20:35 -04:00
|
|
|
implementation(projects.core.di)
|
2025-09-26 17:45:11 -04:00
|
|
|
implementation(projects.core.model)
|
|
|
|
|
implementation(projects.core.network)
|
2025-09-24 10:20:35 -04:00
|
|
|
implementation(projects.core.prefs)
|
2025-09-26 17:45:11 -04:00
|
|
|
implementation(projects.core.proto)
|
2025-09-24 10:20:35 -04:00
|
|
|
|
2025-10-06 23:51:32 -04:00
|
|
|
implementation(libs.androidx.core.location.altitude)
|
2025-09-24 10:20:35 -04:00
|
|
|
implementation(libs.kotlinx.serialization.json)
|
|
|
|
|
implementation(libs.timber)
|
|
|
|
|
}
|