2025-05-29 18:18:45 -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-05-22 08:30:08 -05:00
|
|
|
plugins {
|
2025-09-15 05:47:03 -05:00
|
|
|
alias(libs.plugins.meshtastic.android.library)
|
|
|
|
|
alias(libs.plugins.meshtastic.hilt)
|
|
|
|
|
alias(libs.plugins.kotlin.serialization)
|
2025-09-08 18:31:53 -05:00
|
|
|
alias(libs.plugins.dokka)
|
2025-09-10 10:30:47 -05:00
|
|
|
alias(libs.plugins.kover)
|
2025-09-15 05:47:03 -05:00
|
|
|
alias(libs.plugins.protobuf)
|
2025-09-16 14:45:59 -04:00
|
|
|
alias(libs.plugins.ktorfit)
|
2025-05-22 08:30:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
android {
|
2025-09-15 05:47:03 -05:00
|
|
|
buildFeatures { buildConfig = true }
|
2025-09-19 08:16:36 -04:00
|
|
|
namespace = "org.meshtastic.core.network"
|
2025-05-22 08:30:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
2025-09-24 11:43:46 -04:00
|
|
|
implementation(projects.core.model)
|
2025-10-07 06:23:12 -04:00
|
|
|
|
|
|
|
|
implementation(libs.coil.network.core)
|
|
|
|
|
implementation(libs.coil.network.okhttp)
|
|
|
|
|
implementation(libs.coil.svg)
|
2025-05-22 08:30:08 -05:00
|
|
|
implementation(libs.kotlinx.serialization.json)
|
2025-10-07 06:23:12 -04:00
|
|
|
implementation(libs.ktor.client.content.negotiation)
|
|
|
|
|
implementation(libs.ktor.client.okhttp)
|
|
|
|
|
implementation(libs.ktor.serialization.kotlinx.json)
|
|
|
|
|
implementation(libs.ktorfit)
|
|
|
|
|
implementation(libs.okhttp3.logging.interceptor)
|
|
|
|
|
|
|
|
|
|
googleImplementation(libs.dd.sdk.android.okhttp)
|
2025-05-22 08:30:08 -05:00
|
|
|
}
|