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-10-07 20:08:48 -04:00
|
|
|
plugins { alias(libs.plugins.meshtastic.android.library) }
|
2025-08-08 16:59:54 -05:00
|
|
|
|
2025-12-28 07:47:12 -06:00
|
|
|
configure<LibraryExtension> {
|
2025-09-30 16:55:56 -04:00
|
|
|
buildFeatures { aidl = true }
|
|
|
|
|
namespace = "org.meshtastic.core.service"
|
2026-01-19 18:58:26 -06:00
|
|
|
|
|
|
|
|
testOptions { unitTests.isReturnDefaultValues = true }
|
2025-09-30 16:55:56 -04:00
|
|
|
}
|
2025-08-08 16:59:54 -05:00
|
|
|
|
2025-09-30 16:55:56 -04:00
|
|
|
dependencies {
|
2026-01-29 13:45:00 -06:00
|
|
|
api(projects.core.api)
|
2025-09-30 16:55:56 -04:00
|
|
|
implementation(projects.core.database)
|
|
|
|
|
implementation(projects.core.model)
|
2026-01-24 08:41:17 -08:00
|
|
|
implementation(projects.core.prefs)
|
2025-09-30 16:55:56 -04:00
|
|
|
implementation(projects.core.proto)
|
2025-10-07 20:08:48 -04:00
|
|
|
implementation(libs.javax.inject)
|
2025-10-07 23:04:20 -04:00
|
|
|
implementation(libs.kotlinx.coroutines.core)
|
2025-12-28 08:30:15 -06:00
|
|
|
implementation(libs.kermit)
|
2026-01-15 15:23:33 -08:00
|
|
|
|
|
|
|
|
testImplementation(libs.junit)
|
|
|
|
|
testImplementation(libs.kotlinx.coroutines.test)
|
2026-01-24 08:41:17 -08:00
|
|
|
testImplementation(libs.mockk)
|
2025-08-08 16:59:54 -05:00
|
|
|
}
|