2025-09-17 06:46:43 -04: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/>.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
plugins {
|
2025-09-19 08:16:36 -04:00
|
|
|
alias(libs.plugins.kover)
|
2025-09-19 15:53:43 -04:00
|
|
|
alias(libs.plugins.meshtastic.android.library)
|
|
|
|
|
alias(libs.plugins.meshtastic.kotlinx.serialization)
|
2025-09-24 11:43:46 -04:00
|
|
|
alias(libs.plugins.kotlin.parcelize)
|
2025-09-17 06:46:43 -04:00
|
|
|
}
|
|
|
|
|
|
2025-09-24 11:43:46 -04:00
|
|
|
android {
|
|
|
|
|
buildFeatures {
|
|
|
|
|
buildConfig = true
|
|
|
|
|
aidl = true
|
|
|
|
|
}
|
|
|
|
|
namespace = "org.meshtastic.core.model"
|
|
|
|
|
}
|
2025-09-17 06:46:43 -04:00
|
|
|
|
2025-09-24 11:43:46 -04:00
|
|
|
dependencies {
|
|
|
|
|
implementation(projects.core.proto)
|
|
|
|
|
implementation(projects.core.strings)
|
2025-10-06 23:51:32 -04:00
|
|
|
|
|
|
|
|
implementation(libs.androidx.annotation)
|
2025-09-24 11:43:46 -04:00
|
|
|
implementation(libs.timber)
|
2025-09-26 17:45:11 -04:00
|
|
|
implementation(libs.zxing.android.embedded) { isTransitive = false }
|
|
|
|
|
implementation(libs.zxing.core)
|
2025-10-07 12:23:41 -04:00
|
|
|
|
|
|
|
|
testImplementation(libs.androidx.core.ktx)
|
2025-10-07 20:08:48 -04:00
|
|
|
testImplementation(libs.junit)
|
2025-10-07 17:37:03 -04:00
|
|
|
|
|
|
|
|
androidTestImplementation(libs.androidx.test.ext.junit)
|
2025-09-24 11:43:46 -04:00
|
|
|
}
|