2025-08-08 16:59:54 -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-10-07 20:08:48 -04:00
|
|
|
plugins { alias(libs.plugins.meshtastic.android.library) }
|
2025-08-08 16:59:54 -05:00
|
|
|
|
2025-09-30 16:55:56 -04:00
|
|
|
android {
|
|
|
|
|
buildFeatures { aidl = true }
|
|
|
|
|
namespace = "org.meshtastic.core.service"
|
|
|
|
|
}
|
2025-08-08 16:59:54 -05:00
|
|
|
|
2025-09-30 16:55:56 -04:00
|
|
|
dependencies {
|
|
|
|
|
implementation(projects.core.database)
|
|
|
|
|
implementation(projects.core.model)
|
|
|
|
|
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-09-30 16:55:56 -04:00
|
|
|
implementation(libs.timber)
|
2025-08-08 16:59:54 -05:00
|
|
|
}
|