36 lines
833 B
Kotlin
36 lines
833 B
Kotlin
plugins {
|
|
id("gwenedeg.kmp.library")
|
|
id("gwenedeg.compose")
|
|
}
|
|
|
|
kotlin {
|
|
androidLibrary {
|
|
namespace = "fr.ajaury.gwenedeg.resources"
|
|
androidResources {
|
|
enable = true
|
|
}
|
|
}
|
|
|
|
sourceSets {
|
|
commonMain.dependencies {
|
|
// Core modules
|
|
implementation(projects.core.coroutines)
|
|
|
|
// Compose resources
|
|
implementation(libs.compose.runtime)
|
|
implementation(libs.compose.components.resources)
|
|
|
|
// Coroutines
|
|
implementation(libs.kotlinx.coroutinesCore)
|
|
|
|
// DI
|
|
implementation(project.dependencies.platform(libs.koin.bom))
|
|
implementation(libs.koin.core)
|
|
}
|
|
}
|
|
}
|
|
|
|
compose.resources {
|
|
packageOfResClass = "fr.ajaury.gwenedeg.resources.generated.resources"
|
|
}
|