mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-03-27 10:11:48 -04:00
78 lines
2.7 KiB
Kotlin
78 lines
2.7 KiB
Kotlin
/*
|
|
* Copyright (c) 2025-2026 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 {
|
|
alias(libs.plugins.meshtastic.kmp.library)
|
|
alias(libs.plugins.meshtastic.kotlinx.serialization)
|
|
id("meshtastic.kmp.jvm.android")
|
|
id("meshtastic.koin")
|
|
}
|
|
|
|
kotlin {
|
|
@Suppress("UnstableApiUsage")
|
|
android {
|
|
namespace = "org.meshtastic.core.network"
|
|
androidResources.enable = false
|
|
withHostTest { isIncludeAndroidResources = true }
|
|
}
|
|
|
|
sourceSets {
|
|
commonMain.dependencies {
|
|
api(projects.core.repository)
|
|
implementation(projects.core.common)
|
|
implementation(projects.core.di)
|
|
implementation(projects.core.model)
|
|
implementation(projects.core.proto)
|
|
|
|
implementation(libs.okio)
|
|
implementation(libs.kmqtt.client)
|
|
implementation(libs.kmqtt.common)
|
|
implementation(libs.kotlinx.serialization.json)
|
|
implementation(libs.ktor.client.core)
|
|
implementation(libs.ktor.client.content.negotiation)
|
|
implementation(libs.ktor.serialization.kotlinx.json)
|
|
implementation(libs.kermit)
|
|
implementation(libs.jetbrains.lifecycle.runtime)
|
|
}
|
|
|
|
val jvmMain by getting {
|
|
dependencies {
|
|
implementation(libs.ktor.client.java)
|
|
implementation(libs.jserialcomm)
|
|
implementation(libs.jmdns)
|
|
}
|
|
}
|
|
|
|
androidMain.dependencies {
|
|
implementation(projects.core.ble)
|
|
implementation(projects.core.prefs)
|
|
implementation(libs.usb.serial.android)
|
|
implementation(libs.coil.network.okhttp)
|
|
implementation(libs.coil.svg)
|
|
implementation(libs.ktor.client.okhttp)
|
|
implementation(libs.okhttp3.logging.interceptor)
|
|
}
|
|
|
|
commonTest.dependencies {
|
|
implementation(libs.kotlinx.coroutines.test)
|
|
implementation(libs.turbine)
|
|
implementation(libs.kotest.assertions)
|
|
implementation(libs.kotest.property)
|
|
}
|
|
}
|
|
}
|