Files
Chom-Bev-e-Brezhoneg/data/records/build.gradle.kts
T

24 lines
493 B
Kotlin

plugins {
id("gwenedeg.kmp.library")
}
kotlin {
androidLibrary {
namespace = "fr.ajaury.gwenedeg.records"
}
sourceSets {
commonMain.dependencies {
// Core modules
implementation(projects.core.model)
// Coroutines
implementation(libs.kotlinx.coroutinesCore)
// DI
implementation(project.dependencies.platform(libs.koin.bom))
implementation(libs.koin.core)
}
}
}