Meshtastic-Android/feature/wifi-provision/build.gradle.kts
James Rich 7e041c00e1
Some checks are pending
Dependency Submission / dependency-submission (push) Waiting to run
Main CI (Verify & Build) / validate-and-build (push) Waiting to run
Main Push Changelog / Generate main push changelog (push) Waiting to run
feat(wifi): introduce BLE-based WiFi provisioning for nymea-compatible devices (#4968)
2026-04-02 17:31:17 +00:00

41 lines
1.4 KiB
Kotlin

/*
* Copyright (c) 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.feature)
alias(libs.plugins.meshtastic.kotlinx.serialization)
}
kotlin {
@Suppress("UnstableApiUsage")
android {
namespace = "org.meshtastic.feature.wifiprovision"
androidResources.enable = false
}
sourceSets {
commonMain.dependencies {
implementation(projects.core.ble)
implementation(projects.core.common)
implementation(projects.core.navigation)
implementation(projects.core.resources)
implementation(projects.core.ui)
implementation(libs.jetbrains.navigation3.ui)
implementation(libs.kotlinx.serialization.json)
}
}
}