2024-11-26 08:38:12 -03:00
|
|
|
/*
|
2026-01-25 11:07:07 -06:00
|
|
|
* Copyright (c) 2025-2026 Meshtastic LLC
|
2024-11-26 08:38:12 -03: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/>.
|
|
|
|
|
*/
|
|
|
|
|
|
2025-11-10 19:58:38 -05:00
|
|
|
plugins {
|
|
|
|
|
alias(libs.plugins.meshtastic.kmp.library)
|
2025-12-28 07:47:12 -06:00
|
|
|
id("meshtastic.kmp.library.compose")
|
2025-11-10 19:58:38 -05:00
|
|
|
}
|
2024-05-27 09:56:26 -03:00
|
|
|
|
2025-11-10 19:58:38 -05:00
|
|
|
kotlin {
|
2026-03-12 16:14:49 -05:00
|
|
|
jvm()
|
|
|
|
|
|
2025-11-10 19:58:38 -05:00
|
|
|
@Suppress("UnstableApiUsage")
|
2026-02-27 11:44:19 -06:00
|
|
|
android {
|
|
|
|
|
androidResources.enable = true
|
|
|
|
|
withHostTest { isIncludeAndroidResources = true }
|
|
|
|
|
}
|
2026-02-01 12:03:17 -06:00
|
|
|
|
2026-04-09 13:21:46 -05:00
|
|
|
sourceSets { commonMain.dependencies { implementation(projects.core.common) } }
|
2025-11-10 19:58:38 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
compose.resources {
|
|
|
|
|
publicResClass = true
|
2026-02-22 21:39:50 -06:00
|
|
|
packageOfResClass = "org.meshtastic.core.resources"
|
2025-11-10 19:58:38 -05:00
|
|
|
}
|