2025-07-29 09:42:36 -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-04 21:15:55 -04:00
|
|
|
plugins {
|
|
|
|
|
alias(libs.plugins.kover)
|
|
|
|
|
alias(libs.plugins.meshtastic.android.library)
|
|
|
|
|
alias(libs.plugins.meshtastic.android.library.compose)
|
2025-10-06 22:14:25 -04:00
|
|
|
alias(libs.plugins.meshtastic.kotlinx.serialization)
|
2025-10-04 21:15:55 -04:00
|
|
|
}
|
2025-07-29 09:42:36 -05:00
|
|
|
|
2025-10-04 21:15:55 -04:00
|
|
|
android { namespace = "org.meshtastic.feature.intro" }
|
2025-07-29 09:42:36 -05:00
|
|
|
|
2025-10-04 21:15:55 -04:00
|
|
|
dependencies {
|
|
|
|
|
implementation(projects.core.strings)
|
2025-10-08 20:04:34 -05:00
|
|
|
googleImplementation(projects.core.ui)
|
2025-10-06 22:14:25 -04:00
|
|
|
|
2025-10-04 21:15:55 -04:00
|
|
|
implementation(libs.accompanist.permissions)
|
2025-10-07 06:23:12 -04:00
|
|
|
implementation(libs.androidx.compose.material.iconsExtended)
|
|
|
|
|
implementation(libs.androidx.compose.material3)
|
|
|
|
|
implementation(libs.androidx.compose.ui.text)
|
2025-10-06 23:51:32 -04:00
|
|
|
implementation(libs.androidx.navigation3.runtime)
|
|
|
|
|
implementation(libs.androidx.navigation3.ui)
|
2025-10-04 21:15:55 -04:00
|
|
|
}
|